屏蔽js弹窗的方法
在html的头部最上方改变alert的‘定义’:
如下代码:
[pcsh lang="js" tab_size="4" message="" hl_lines="" provider="manual"]
<script type="text/javascript">
window.alert = function (e) {
if( typeof(e) != 'undefined') {
console.log(e)
}else{
console.log('无提示信息')
}
};
</script>
[/pcsh]
这样alert信息就会显示在console中了
最后更新于 2017-03-17 15:58:08 并被添加「」标签,已有 587 位童鞋阅读过。
此处评论已关闭