Created
September 1, 2016 10:28
-
-
Save think2011/c37671d1a97c67ba3809898ce28113ff to your computer and use it in GitHub Desktop.
浏览器兼容性提示
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
// 放在body内 | |
if (navigator.userAgent.toLowerCase().indexOf("applewebkit/") < 0) { | |
var html = '\n<div style="position: absolute; width: 100%;height: 100%; z-index: 1000000;">\n \n <div style="\n background: #FFF3E1;\n padding: 20px;\n text-align: center;\n font-size: 15px;\n position: relative;\n z-index: 1000;\n color: #777;">\n <span style="color:#FF9800; ">▶</span> 很抱歉,无线编辑器暂不支持您的浏览器内核,请您\n <a style="color: #2196F3;"\n href="http://chrome.360.cn/test/core/">升级浏览器</a>\n 后再使用。\n </div>\n \n <div style="background: #eee;position: absolute;width: 100%;height: 100%;z-index: 10000;opacity: .7;"></div>\n</div>'; | |
document.body.innerHTML = html | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment