最新的Web開發教程
 

Script text Property

腳本對象參考 腳本對象

獲取的內容<script>元素:

var x = document.getElementById("myScript").text

x的結果將是:

document.write("Hello World!");
試一試»

定義和用法

文本屬性設置或返回的內容<script>元素。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

文本屬性在所有主流瀏覽器的支持。


句法

返回text屬性:

scriptObject .text

設置文本屬性:

scriptObject .text= 屬性值
描述
contents 指定腳本的內容

技術細節

返回值: 一個String,表示腳本的內容。 返回是對兒童的所有文本節點<script>樹順序元素(其他節點,這樣的評論或元素將被忽略)。

更多示例

如何獲得的內容的另一個例子<script>元素:

var x = document.getElementById("myScript").text

x的結果將是:

var fruits = ["Banana", "Orange", "Apple", "Mango"]; function fruitFunction() { fruits.pop(); var x = document.getElementById("fruitdemo"); x.innerHTML=fruits; }
試一試»
腳本對象參考 腳本對象