首页 > 编程语言 > 详细

javascript 重构alert()

时间:2018-07-28 23:57:23      阅读:323      评论:0      收藏:0      [点我收藏+]

javascript问题,关于重构window.alert()后,然后调用window原本的window.alert()的方法

大神们,问个问题,如果在script标签的第一行散写,重构了window.alert()的方法,如果不动上面重构的代码的基础上,只能用一条语句直接调用原本的window.alert()的方法,有办法么?
 
 
window.alert = window.constructor.prototype.alert
追问
问题解决了,非常感谢
 

技术分享图片

我的理解是这样的。
1
2
3
4
5
6
7
window._alert = window.alert //临时保存一下;
window.alert = function(){
    //写你重构的方法;
    return;
}
//下面你想恢复的话就很简单了
window.alert = window._alert;
 
 
 
 
 
 
本回答被网友采纳
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
<html>
    <head>
        <title>aa</title>
        <script type="text/javascript">
              var userName;
              function greetUser() {
                alert(‘Hello, I am your pet rock.‘);
              }
        </script>
    </head>
    <body onload="greetUser();"></body>
</html>

 

 

 

javascript 重构alert()

原文:https://www.cnblogs.com/yanxiatingyu/p/9383846.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!