Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用锚标记,并且必须在 jQuery 中访问其内容。我必须从中访问“文本”。我知道$("#AnchorID").attr("href")或其他什么,但有什么方法可以获取它的值('文本')?
$("#AnchorID").attr("href")
<a href="">text</a>
使用 $("#AnchorID").text(),
现场演示
<a id="AnchorID" href="">text</a>
获取文本
textOfAnchor = $("#AnchorID").text();
更改文本
$("#AnchorID").text("new text");
获取 html
htmlOfAnchor = $("#AnchorID").html();