Home  >  Article  >  Web Front-end  >  How to close the javascript warning box

How to close the javascript warning box

王林
王林Original
2020-05-07 15:19:083626browse

How to close the javascript warning box

Implementation ideas:

Rewrite the "alert" method. The rewritten syntax is: "old method = function (parameter) {content of the new method}" , the return value should be "false", which means no operation is performed.

Specific code:

<script LANGUAGE="JavaScript">
<!--
window.alert = function(str){
return ;
}
alert("不能弹出警示框");//-->
</script>

Recommended tutorial: js entry tutorial

The above is the detailed content of How to close the javascript warning box. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn