1
http://jquerymobile.com/test/docs/lists/lists-search.htmljQuery Mobile的搜索數據隱藏
我想創建這樣用jQuery Mobile的過濾器,而無需查看數據,但只顯示過濾器
http://jquerymobile.com/test/docs/lists/lists-search.htmljQuery Mobile的搜索數據隱藏
我想創建這樣用jQuery Mobile的過濾器,而無需查看數據,但只顯示過濾器
編輯的結果是:我終於得到這個代碼您。
的jQuery:
$(document).ready(function() {
$('#mylist li').addClass('ui-screen-hidden');
$('input[data-type="search"]').keyup(function() {
if ($(this).val() === '') {
$('#mylist li').addClass('ui-screen-hidden');
} else {
$('#mylist li').removeClass('ui-screen-hidden');
}
$(this).trigger('change');
});
});
謝謝你,我怎麼能選擇搜索欄? (用於綁定事件) – Andreah
我編輯了我的答案以添加一些代碼。 – Lian
謝謝你的時間蓮 – Andreah