最新的Web開發教程
 

Anchor text Property

<錨對象

返回一個鏈接的文本內容:

var x = document.getElementById("myAnchor").text;

x的結果將是:

Example link
試一試»

定義和用法

文本屬性設置或返回一個鏈接的文本內容。

HTML元素通常包括兩個元素節點和一個文本節點,例如,中<a>與說的文本元素"Click me" 。 如果你想獲取或設置此屬性"Click me"的文字。


瀏覽器支持

屬性
text 10.0

句法

返回text屬性:

anchorObject .text

設置文本屬性:

anchorObject .text= 屬性值
描述
sometext 指定鏈接的文本內容

技術細節

返回值: 一個String,表示該鏈接的文本內容

更多示例

更改鏈接(只適用在Internet Explorer 10+和Firefox)的文本內容:

document.getElementById("myAnchor").text = "Click me to open example link!";
試一試»

<錨對象