在做微信的開發中,發現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('[data-href]', 'click', function () { if ($(this).data('href')) { location.href = $(this).data('href'); } });
在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中文網其他相關文章!