-
09-06
-
12-27
-
01-08
-
12-31
-
12-31
Warning: error_log(/home/wwwroot/zym.qw1688.net/cache/error_log.php): failed to open stream: Permission denied in /home/wwwroot/zym.qw1688.net/yzmphp/core/class/debug.class.php on line 63
发布时间:2021-01-08 13:09:23
文章来源:原创
访问次数:2
09-06
12-27
01-08
12-31
12-31
封装函数
// 阻止默认跳转
function stopDefault(e) {
if (e&&e.preventDefault){
e.preventDefault();
}else{
window.event.returnValue = false;
return false;
}
}
函数调用
//方法一
$(document).ready(function(){
$(document).on('click','a',function(e){
stopDefault(e);
});
});
//mui-app方法
mui('#newsContent').on('tap', 'a', function(e) {
stopDefault(e);
});本文链接:http://www.hzlm.net/javascript/83.html