Strict Standards: Resource ID#23 used as offset, casting to integer (23) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401

Strict Standards: Resource ID#25 used as offset, casting to integer (25) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401

Strict Standards: Resource ID#26 used as offset, casting to integer (26) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401
ТвойWeb :: Версия для печати :: Подскажите, пожалуйста, альтернативу для innerText
ТвойWeb » WebMaster класс » JavaScript » Подскажите, пожалуйста, альтернативу для innerText

Страниц (1): [1]
 

1. Самоделкин - 07 Июня, 2007 - 07:07:25 - перейти к сообщению
Я делаю простенький интерактивный редактор HTML для чайников, чтобы они вводили код в форму и, нажав кнопку, видели результат. С использованием свойства innerText это элементарно:
CODE:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1251">
<script type="text/javascript">
var txt = "";
function writetxt() {
txt = document.getElementById("tags").innerText
document.getElementById("result").innerHTML = txt
}
function cleartxt() {
txt = "";
document.getElementById("result").innerHTML = txt;
document.getElementById("tags").innerText = txt
}
</script>
</head>

<body>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><form action="">
<textarea cols="60" rows="25" name="tags" id="tags"></textarea><br>
<input type="button" value="Посмотреть" onClick="writetxt();">&nbsp;&nbsp;
<input type="button" value="Очистить" onClick="cleartxt();">
</form></td>
</tr>
</table>
<div id="result"></div>
</body>
</html>

Но чем заменить это в браузерах, которые не понимают этого свойства?
Пробовал по-разному химичить, но результат если и выводится, то вместе с тэгами.
(Добавление)
Всё, спасибо, забыл про свойство value, старый дурак. Радость
I'm sorry!
closed

Форум на AlfaSpace.NET


Powered by ExBB
ExBB FM 1.0 RC1 by TvoyWeb.ru
InvisionExBB Style converted by Markus®

[Script Execution time: 0.0281]     [ Gzipped ]



Notice: ob_end_flush(): failed to send buffer of ob_gzhandler (1) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/page_tail.php on line 33