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