首页 > 语言 > JavaScript > 正文

js拦截alert对话框另类应用

2024-05-06 14:19:59
字体:
来源:转载
供稿:网友
代码如下:
<input type="button" onclick="opened('ALERT')" value="提示"/>
<script>
var myAlert=alert;
window.alert=function(msg){
//your code
myAlert (msg+"-TEST");
}
function opened(msg){
alert(msg);
}
</script>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选