日期:2014-05-16 浏览次数:20516 次
<html>
<head>
<script type="text/javascript">
window.alert=newalert;
function Test(){
alert('12');
}
function newalert(msg)
{
if(msg='试用期已满')
{
//什么 也不做
}
else
{
alert(msg);
}
}
</script>
</head>
<body>
<input type="button" onclick="Test();"/>
</body>
</html>
var oldAlert = window.alert;
window.alert = function(msg){
if(msg=='试用期已满'){
return
}else{
oldAlert(msg)
}
}