如何捕获点击jQueryMobile中listview组件的过滤器清除按钮的事件?
我尝试过选择器$('.ui-input-clear')
,$('.ui-input-search a')
,$('.ui-input-search :not(input)')
,但我无法找到解决方案。
在jsfiddle工作正常,但我正在为iOS和Android平台开发。
答案 0 :(得分:4)
这是旧的,但它出现在谷歌上:
尝试注册点击事件,而不是注册点击事件。
$('.ui-input-clear').live('tap', function () {
// Your code here
});
答案 1 :(得分:0)
Set Ws = CreateObject("WScript.Shell")
sNewestFile = "D:\Path with spaces\calendar with spaces.ics"
Ws.Run DblQuote(sNewestFile),1,True
'****************************************
Function DblQuote(Str)
DblQuote = Chr(34) & Str & Chr(34)
End Function
'****************************************
对Jquery和Jquery mobile的新功能的响应