ios safari游览器除了a、input、button等不支持document事件委托?
<body>加上这个样式即可
<style>
.clickable-div
{
cursor: pointer;
}
</style> $(document).on("click",function(e) {
if (e.target.className=="weui_mask_transparent") {
//$("#pay_form").removeClass("keyboard-open");
return;
}
$("#pay_form").removeClass("keyboard-open");
});
相关文章
- 为什么提振。Asio不支持基于事件的接口吗?
- document.GetElementById('PIDIn').select()对象不支持此属性或方法?
- 苹果手机浏览器的$(document).on(“click”,function(){}) 绑定的事件点击无效
- IE8以下浏览器不支持document.getElementsByClassName() 访问节点;怎么解决?---封装自己的类名
- jquery $(document).ready 事件不起作用
- react组件直接在document上添加事件
- JS 页面加载触发事件 document.ready和onload的区别
- Unit07: document 对象 、 自定义对象 、 事件
- JS中页面加载事件window.onload、onload()、document.onclick
- Js阻止事件冒泡和document.onclick在IE浏览器上无效