Opencart 模板中的错误警报消息
Error Alert message In Opencart Template
我正在 opencart 项目上工作,它即将 Complete.I 遇到一个问题 now.when 曾经有用户单击其他打开的选项卡。 Java 显示警告错误 message.It 是因为网速慢或页面不正确 loaded.Still 我想删除该消息 有什么方法可以删除或修复它。请帮我。
Here is the Link
使用
简单地覆盖警报
<script>window.alert = function() {};</script>
要阻止这个恼人的警报出现在您的商店中,只需在您的网站中包含以下脚本 header。
<script>
(function() {
var new_alert = window.alert;
window.alert = function(str) { //str variable return content which is passed to be shown in alert
str1 = str.replace(/(\r\n|\n|\r)/gm,""); //Removing line break from string
if (str1 !="error"){ //show alert only if content is not equal to 'error'
new_alert(str);
}
else{
// do nothing
}
};
})();
</script>
如果您想知道它的作用:
它只是取代了javascript的默认警报功能,当其内容为'error'时不显示警报。
我正在 opencart 项目上工作,它即将 Complete.I 遇到一个问题 now.when 曾经有用户单击其他打开的选项卡。 Java 显示警告错误 message.It 是因为网速慢或页面不正确 loaded.Still 我想删除该消息 有什么方法可以删除或修复它。请帮我。 Here is the Link
使用
简单地覆盖警报<script>window.alert = function() {};</script>
要阻止这个恼人的警报出现在您的商店中,只需在您的网站中包含以下脚本 header。
<script>
(function() {
var new_alert = window.alert;
window.alert = function(str) { //str variable return content which is passed to be shown in alert
str1 = str.replace(/(\r\n|\n|\r)/gm,""); //Removing line break from string
if (str1 !="error"){ //show alert only if content is not equal to 'error'
new_alert(str);
}
else{
// do nothing
}
};
})();
</script>
如果您想知道它的作用: 它只是取代了javascript的默认警报功能,当其内容为'error'时不显示警报。