首頁  >  文章  >  web前端  >  jQuery delegate事件監聽無效的解決辦法

jQuery delegate事件監聽無效的解決辦法

黄舟
黄舟原創
2017-06-26 10:09:292169瀏覽

在做微信的開發中,發現jQuery的delegate綁定的事件監聽無回應的解決方法。

前端的小朋友將原來以下結構的程式碼

<a href="ssss">
<p>sssss</p>
<p>dddddd</p>
</a>

改成了

<div data-href="ssss">
<p>ssssss</p>
<p>dddddd</p>
</div>

因為涉及一些非同步載入的內容,所以使用如下程式碼來實作a 標籤的功能

$(document).delegate(&#39;[data-href]&#39;, &#39;click&#39;, function () {            
if ($(this).data(&#39;href&#39;)) {
                location.href = $(this).data(&#39;href&#39;);
            }
        });

在PC瀏覽器上沒有出現任何問題,當由iPhone 6 自帶的瀏覽器開啟的時候卻直接失效了。

最終在stackoverflow上找到了解決方案,現記錄如下:

On iOS there is no event bubbling without a cursor style. So in your CSS you need to add cursor: pointer; to the element.

新增CSS內容

*[data-href]{cursor: pointer;
}

以上是jQuery delegate事件監聽無效的解決辦法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn