自定义alert弹框,title不显示域名
去掉网址
弹窗 弹框 alert ios 苹果 alert弹出对话框英文域名
苹果手机ios弹出窗自定义去掉标题网址文字
<script>
window.alert = function(name){
var iframe = document.createElement("IFRAME");
iframe.style.display="none";
iframe.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe);
window.frames[0].window.alert(name);
iframe.parentNode.removeChild(iframe);
}
//重写confirm方法,去掉地址显示
window.confirm = function(name){
var iframe = document.createElement("IFRAME");
iframe.style.display="none";
iframe.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe);
var result = window.frames[0].window.confirm(name);
iframe.parentNode.removeChild(iframe);
return result;
}
</script>
😬😬😬👏👏😅🤔
UC浏览器,手机中的IE无效。。😬。。
jQuery消息提示框插件点击调用
message.css
message.js
调用方式:
参数详解:
[BLUE]演示完整代码[/BLUE]
手机小图标