1
具體文字我知道如何找到特定文本的DOM元素,但我真的在努力尋找與特定文本 元素,例如:<span class="foo">Special</span>
發現在JavaScript中
有例如像下面這個腳本找到與文本的元素?
var txt = window.document.body.innerHTML;
if (txt.match(/Special/)) {
// do something if true
alert("Found");
} else {
// do something if false
alert("Sorry");
};
jQuery? http://stackoverflow.com/questions/7896455/jquery-selector-for-an-element-that-directly-contains-text – mplungjan
你究竟想要完成什麼? [不要使用正則表達式來解析HTML](http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454) – charlietfl
@mplungjan問題已經存在沒有jQuery標籤。 –