ios访问web页面<div>点击不起效果,在其div上添加style=”cursor:pointer;“
jquery web页面动态append()事件调用方法:$(document).on(e,class,function(){});
ios访问web页面alert()显示url的解决办法
重写alert()方法
window.alert = function(name){
var iframe = document.createElement("IFRAME");
iframe.style.display="none";
iframe.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe);
window.frames[0].window.alert(name);
iframe.parentNode.removeChild(iframe);
}