JavaScript Reference/Javascript Properties/text TextRange

Материал из Web эксперт
Версия от 08:21, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"text" Example

    
<html>
<body>
<script language="javascript">
function function1(){
    textRange = document.body.createTextRange();
    textRange.text = "This is a test";
}
</script>
<button onclick="function1();">See Text in TextRange</button>
</body>
</html>



"text" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |TextRange                                                     |
+----------------+--------------------------------------------------------------+



"text" Syntax and Note

Note:
Read and write property. 
Sets the text string in the textRange object.
    
Syntax:
    
textRangeName.text = value