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.
我正在尝试获取 Text(Title)以下代码
Text(Title)
<h6 id="test">Title</h6>
使用 JQUERY$(test).text()
$(test).text()
它在 Firefox 10 版本中不工作,在其他地方工作。
我需要改变什么吗?
谢谢
您需要添加一个以选择具有与CSS 选择器文档中描述的值匹配的#HTML 属性的元素。id
#
id
所以使用:
$('#test').text() ^ add a # here
尝试这个
$("#test").text()
代替