我想使用jQuery從原始文本中搜索text_word。使用jQuery搜索原始文本
$("#s:regex('text_word')").each(function() {
$(this).appendTo('#s1');
});
<div id="s">raw text here</a>
<div id="s1"></a>
感謝 讓
我想使用jQuery從原始文本中搜索text_word。使用jQuery搜索原始文本
$("#s:regex('text_word')").each(function() {
$(this).appendTo('#s1');
});
<div id="s">raw text here</a>
<div id="s1"></a>
感謝 讓
您的要求是不明確;如果你需要通過文字來過濾DIV 你可以嘗試用:
<script type="text/javascript">
$(function() {
$("div:contains('Text to search')").each(function(index) {
alert(index + ': ' + $(this).text());
});
});
</script>
添加警報(fIn)彈出消息[object Object] – X10nD 2010-03-24 11:49:16
它返回一個jQuery對象,您需要迭代它。 – systempuntoout 2010-03-24 12:03:24
好幫我出去! – X10nD 2010-03-24 12:03:59
你的問題不清楚,請添加像你正在嘗試做的正是一些更多的信息。 – Fabian 2010-03-24 11:27:14
我在#s中有一些原始文本,我想從#s選擇某些單詞並追加到#s1 – X10nD 2010-03-24 11:28:45