给你的 div 一个类,比如“.myDiv”,然后通过 jQuery:
$('.myDiv').doSomething...
我不完全确定 AJAX 将如何发挥作用,但为您指明正确的方向:
http://api.jquery.com/jQuery.ajax/
您的编辑是一个完全不同的问题。但是你会做同样的事情来获取 div。在这种情况下,您将使用“每个”:
$('.findfromthis').each(function(){
// for each div you can now grab the text it contains:
DivText = $(this).text();
// now you could use a variety of different JS seach techniques to find
// your content. But one example to search for a word or word fragment would be:
if (DivText.indexOf("guys") !== -1)){
// then this div has the word 'guys' in its text somewhere
}
})
如果搜索词更复杂(比如不想查找片段),那么您可能希望使用 REGEX 作为搜索部分。
不过,同样,不确定 AJAX 是否适合这一点。这一切都可能发生在客户端。