JavaScript refactoring alert ()

Source: Internet
Author: User
Tags script tag

JavaScript problem, about refactoring Window.alert (), and then invoking window's original Window.alert () methodBig God, ask a question, if the script tag in the first line to write, refactoring the method of Window.alert (), if you do not move the above refactoring on the basis of the code can only use a statement directly call the original Window.alert () method, there is a way?   Window.alert = Window.constructor.prototype.alert cross-examine
Problem solved, thank you very much.
 

That's what I understand.
1234567 window._alert = window.alert //临时保存一下;window.alert = function(){    //写你重构的方法;    return;}//下面你想恢复的话就很简单了window.alert = window._alert;
  This answer was adopted by netizens
123456789101112 <html>    <head>        <title>aa</title>        <scripttype="text/javascript">              var userName;              function greetUser() {                alert(‘Hello, I am your pet rock.‘);              }        </script>    </head>    <bodyonload="greetUser();"></body></html>

JavaScript refactoring alert ()

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.