今天在群里遇到一道很有意思的题目,大家发挥所能,给出的答案五花八门。特意整理成博文发表出来:

//原题目:
window.alert = function(){};______;alert(1); 填空,使后面的alert(1)能正确弹出,至少列举两种不同思路。

解法一,创建新的执行环境,使用iframe沙箱

window.alert = function(){};
window.alert=function(obj){
    var iframe=document.createElement("iframe");
    iframe.src="javascript:void(0);"
    document.body.appendChild(iframe)
    iframe.contentWindow.alert(obj);
}
alert(1)

解法二,创建新的执行环境,打开新窗口

window.alert = function(){};
window.alert = function(a){
    window.open('','').alert(a)
    //window.createPopup().document.parentWindow.alert(a) //IE only
}
alert(1);

解法三, 弄回原来的alert(IE下失败)

window.alert = function(){};
window.alert = function(a){
    delete window.alert;
    window.alert(a);
}
alert(1);

解法四,思路同三(IE下失败)

window.alert = function(){};
window.alert = function(a){
   window.__proto__.alert.call(window,a);
  //window.constructor.prototype.alert.call(window,a);
}
 alert(1);

解法五(IE only)

window.alert = function(){};
execScript('sub alert(msg):msgbox msg:end sub', 'vbscript');
alert(1);

解法六,就是一晕招

window.alert = function(){};
window.alert = function(a){
    window.confirm(a)
}
alert(1);

相关文章:

  • 2021-12-25
  • 2022-12-23
  • 2021-07-06
  • 2022-01-16
  • 2021-12-05
  • 2022-01-02
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-08-31
  • 2021-10-13
  • 2021-07-07
  • 2021-06-03
  • 2022-01-17
相关资源
相似解决方案