我有一個文本輸入搜索應該根據div的標題過濾div。這裏是不工作的代碼:根據文本搜索顯示div
$('.contact-name').each(function(){
var txt = $('#search-criteria').val();
$('this').find(txt).show()
});
我在做什麼錯?
編輯: 澄清變量txt是用戶在輸入字段中鍵入的內容。一個例子是,如果TXT是查我希望此行顯示:
<div class="contact-name"><h3><a href="##">Charles Smith</a></h3></div>
查看我上面的附加解釋。我期待評估div內的文字。 – 2012-03-01 03:19:58
更新了答案..檢查 – 2012-03-01 03:22:24
這是主要工作,有沒有辦法使這種情況下不敏感? – 2012-03-01 03:43:18