Text
In this chapter you will learn:
Working with Text
The text content of an element is represented by a
Text
object, which is presented as a child of the
element in the document model.
Name | Description | Returns |
---|---|---|
appendData(string) | Appends the string to the end of text. | void |
data | Gets or sets the text. | string |
deleteData(offset, count) | Removes the text from the string. | void |
insertData(offset, string) | Inserts the specified string at the specified offset. | void |
length | Returns the number of characters. | number |
replaceData(offset,count, string) | Replaces a region of text with the specified string. | void |
replaceWholeText(string) | Replaces all of the text. | Text |
splitText(number) | Splits the existing Text element into two at the specified offset. | Text |
substringData(offset, count) | Returns a substring from the text. | string |
wholeText | Gets the text. | string |
The following code replaces the text for a paragraph.
<!DOCTYPE HTML> <!--from j a v a 2 s. c om-->
<html>
<body>
<p id="textblock">
This is a test.
</p>
<button id="pressme">Press Me</button>
<script>
var elem = document.getElementById("textblock");
document.getElementById("pressme").onclick = function() {
var textElem = elem.firstChild;
document.writeln("The element has " + textElem.length + " chars");
textElem.replaceWholeText("This is a new string ");
};
</script>
</body>
</html>
Next chapter...
What you will learn in the next chapter:
- How to get the length of a NodeList
- How to Convert NodeList to an Array
- Convert a NodeList to an array in Internet Explorer