このコードを使用して要素のテキストを見つけることができますが、特定の時間マウスをその単語の上に置いた場合、ページ内の任意の場所で単一の単語を見つけたいと考えています。
$(document).bind("mouseover", function (e) {
var event = e;
setTimeout(function () { $(event.target).contents().each(function(index, elem) {
if( elem.nodeType === 3 && $.trim(elem.nodeValue).length ) {
var text = $.trim(elem.nodeValue);
text = text.split(" ");
console.log($.trim(elem.nodeValue));
//alert($.trim(elem.nodeValue));
return false;
}
});
}, 5000);
});