js阻止alert弹窗

你可以通过覆盖window.alert函数来阻止弹窗,代码如下:

window.alert = function() {};

这样,当调用 alert 函数时就不会弹出对话框了。

  •