IE9及以下版本檢測提示升級
阿新 • • 發佈:2019-02-04
//瀏覽器版本過低 提示升級
(function(w) {
if(!("WebSocket" in w && 2 === w.WebSocket.CLOSING)) {
var d = document.createElement("div");
d.className = "browsehappy";
d.innerHTML = '<div style="width:100%;height:100px;font-size:20px;line-height:100px;text-align:center;background-color:#E90D24;color:#fff;margin-bottom:40px;">為了改善你的體驗,請升級你的瀏覽器</strong><a target="_blank" href="http://browsehappy.osfipin.com/" style="background-color:#31b0d5;border-color: #269abc;text-decoration: none;padding: 6px 12px;background-image: none;border: 1px solid transparent;border-radius: 4px;color:#FFEB3B;">點選此處升級</a></div>' ;
var f = function() {
var s = document.getElementsByTagName("body")[0];
if("undefined" == typeof(s)) {
setTimeout(f, 10)
} else {
s.insertBefore(d, s.firstChild)
}
};
f()
}
}(window));