我需要添加显示和隐藏搜索过滤器栏的功能
我尝试使用(示例):
setTimeout(showFilter,5000);
function showFilter(){
alert('showFilter');
$.mobile.listview.prototype.options.filter = true;
$('#workList').listview('refresh');
setTimeout(hideFilter,1500);
}
function hideFilter(){
alert('hideFilter');
$.mobile.listview.prototype.options.filter = false;
$('#workList').listview('refresh');
}
但不工作,你能帮帮我吗?谢谢