нашел в книге пример JS ввода текста, но он у меня не работает. помогите найти ошибку, плиз.
Код:
|
<html>
<head>
</head>
<body>
<form>
<input type=text id=txt_field name=txt_field size=50><br>
<input type=button value='Ввести текст' onclick="insert_text(txt_field.value)">
</form>
<p id=par name=par></p>
<script>
function insert_text(text) {
par.innerText=text;
}
</script>
</body>
</html> |