JavaScript Reference/Javascript Methods/createTextRange — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:22, 26 мая 2010
"createTextRange()" Example
<html>
<body>
<script language="JavaScript">
function function1() {
var myNode = document.body.createTextRange();
myNode.text = "text for new text range";
}
</script>
<button onclick="function1();">Create text range</button>
</body>
</html>
"createTextRange()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<body> <button> |
| |<input type="button"> <input type="hidden"> |
| |<input type="password"> <input type="reset"> |
| |<input type="submit"> <input type="text"> |
| |<textarea> |
+----------------+--------------------------------------------------------------+
"createTextRange()" Syntax, Parameters and Note
Note:
Creates a new TextRange object with the text contained by the element.
Syntax:
document.all.elementID.createTextRange()