Script text 屬性
實(shí)例
獲取 <script> 元素的內(nèi)容:
var x = document.getElementById("myScript").text
x 輸出結(jié)果為:
document.write("Hello World!");
嘗試一下 ?
定義和用法
text 屬性設(shè)置或返回 <script> 元素的內(nèi)容。
瀏覽器支持
所有主流瀏覽器都支持 text 屬性。
語法
返回 text 屬性:
scriptObject.text
設(shè)置 text 屬性:
scriptObject.text=contents
屬性值
值 | 描述 |
---|---|
contents | 規(guī)定腳本的內(nèi)容。 |
技術(shù)細(xì)節(jié)
返回值: | 字符串,表示腳本的內(nèi)容。返回 <script> 元素的所有子文本節(jié)點(diǎn)的內(nèi)容(其他節(jié)點(diǎn),比如 comments 或 elements 會(huì)被忽略)。 |
---|
更多實(shí)例
實(shí)例
另一個(gè)實(shí)例 - 獲取 <script> 元素的內(nèi)容:
var x = document.getElementById("myScript").text
x 輸出結(jié)果為:
var fruits = ["Banana", "Orange", "Apple", "Mango"]; function fruitFunction() { fruits.pop(); var x = document.getElementById("fruitdemo"); x.innerHTML=fruits; }
嘗試一下 ?
更多建議: