在微信公眾號網站開發過程功能中,一個頁面循環綁定了點擊事件,在切換到另一個頁面再透過手機實體返回鍵返回之後,點擊事件就失效了,不知是何原因?
<code>$(function(){ //点击事件 var mapList=$(".map .loc-tag"); $.each(mapList,function(index,item){ mapList.eq(index).on('click',function(){ ... //get请求 }); }); });</code>
在微信公眾號網站開發過程功能中,一個頁面循環綁定了點擊事件,在切換到另一個頁面再透過手機實體返回鍵返回之後,點擊事件就失效了,不知是何原因?
<code>$(function(){ //点击事件 var mapList=$(".map .loc-tag"); $.each(mapList,function(index,item){ mapList.eq(index).on('click',function(){ ... //get请求 }); }); });</code>
試試事件委託
var hastouch = "ontouchstart" in window ? true : false,
start = hastouch ? "touchstart" : "click";
mapList.eq(index).on(start,function(){
<code> ... //get请求</code>
});
之前我做一個專案的時候也遇到這個問題。