发布网友 发布时间:2022-04-26 22:49
共3个回答
热心网友 时间:2022-04-22 13:13
这个没有搞过,但是可以给个思路:在页面上添加下面的js试试,即把js自己的alert、confirm、prompt给覆盖掉。
var alert=function(){return 1}热心网友 时间:2022-04-22 14:31
用脚本触发按钮的click事件,例如按钮的id为test,用以下语句:
document.getElementById("test").click();
热心网友 时间:2022-04-22 16:06
window.alert = function(){return !0;};
window.confirm = function(){return !0;};
window.prompt = function(){return !0;};