Не выводится текст
Подскажите где ошибка
<form> <input type="text" size="30" name="txt_field" id="txt_field"> <input type="button" name="button" value="ввести текст" ONCLICK="insert_text('txt_field.value')"> </form> <p id=n name=n></p> <script> function insert_text(text) { n.innerHtml=text; }</script> |
F12 , Ctrl+Shift+I или Ctrl+Shift+K - вылезет консоль, где можно будет увидеть ошибку, об которую споткнулся браузер.
|
prettyremage,
Вот так будет работать: <form> <input type="text" size="30" name="txt_field" id="txt_field"> <input type="button" name="button" value="ввести текст" ONCLICK="insert_text(document.getElementById('txt_field').value)"> <div id="result"></div> </form> <script type="text/javascript"> function insert_text(text) { document.getElementById('result').innerHTML=text; }</script> |
Часовой пояс GMT +3, время: 01:00. |