我试图绑定(bind)一个点击事件无济于事:
$('label[for=p_divisionR]').bind('tap', function(){
$('#propertyTypeDivision').parent().show();
$("#propertyType").parent().hide();
$("#propertyTypeDivisionRL").parent().hide();
hideBedrooms();
});
我也尝试过 .live('tap', fn) ,但它不起作用。但是,在桌面上,使用 .live('click', fn) 可以正常工作。
为什么 click 事件会起作用但不能点击?它正在使用 jQuery mobile rc1 在 iPad 上进行测试。
见:
http://m.bentons.propertylogic.net/
Best Answer-推荐答案 strong>
您可以使用其他事件,例如 touchstart 和 click。他们响应触摸 iOS 中的 safari。这种方法对我有用。
$('#p_divisionR').live('click touchstart', function(){
$('#propertyTypeDivision').parent().show();
$("#propertyType").parent().hide();
$("#propertyTypeDivisionRL").parent().hide();
hideBedrooms();
});
关于ios - jquery 移动绑定(bind)/实时点击,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8399179/
|