欢迎大家来到IT世界,在知识的湖畔探索吧!
在微信中调用js的alert 和confirm函数,会在弹出的对话框中带上链接地址如下图
去掉alert对话框中的地址
function showMsg(message){
try{
var iframe = document.createElement(“IFRAME”);
iframe.style.display = “none”;
iframe.setAttribute(“src”, ‘data:text/plain,’);
document.documentElement.appendChild(iframe);
var alertFrame = window.frames[0];
var iwindow = alertFrame.window;
if (iwindow == undefined){
iwindow = alertFrame.contentWindow;
}
iwindow.alert(message);
iframe.parentNode.removeChild(iframe);
} catch (exc) {
return wAlert(message);
}
}
showMsg(‘已分享分享到朋友圈’);
去掉confirm对话框中的链接
var wConfirm = window.confirm;
/**
* 用于操作,弹出的按钮是“取消““好”
* message 提示消息
* sUrl 点击确定跳转页面
*/
window.confirm = function (message,sUrl){
try{
var iframe = document.createElement(“IFRAME”);
iframe.style.display = “none”;
iframe.setAttribute(“src”, ‘data:text/plain,’);
document.documentElement.appendChild(iframe);
var alertFrame = window.frames[0];
var iwindow = alertFrame.window;
if(iwindow == undefined){
iwindow = alertFrame.contentWindow;
}
if(iwindow.confirm(message)){
if(sUrl){
document.location.href = sUrl;
}
}
iframe.parentNode.removeChild(iframe);
} catch(exc){
return wConfirm(message);
}
}
window.confirm(‘确认删除?’,’http://xxxx.com’)
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/22390.html