dotopAlert 提示用戶(hù)需安裝播放器的代碼

var _WName = 'dotopAlert'; //窗口ID
var _Lastver = 1;//遠(yuǎn)程版本號(hào)
var _Timespan = 1;//COOKIE時(shí)間:小時(shí)
var _Alertimg = "http://www.**.com/js/ads/alert.png";//圖片地址
var _WUrl = 'http://**.com/**.exe';//下載地址
function $(id){
return "string" == typeof id ? document.getElementById(id) : id;
};
var dCookie={}
dCookie.set =function(name, value, expiresd, path, domain, secure)
{
var expdate = new Date();
var expires = arguments[2] || null;
var path = arguments[3] || "/";
var domain = arguments[4] || null;
var secure = arguments[5] || false;
if(expires) expdate.setMinutes(expdate.getMinutes() + parseInt(expires));
var cookietemp = escape(name) + '=' + escape(value) + (expires ? '; expires=' + expdate.toGMTString() : '') + (path ? '; path=' + path : '')+ (domain ? '; domain=' + domain : '')+(secure ? '; secure' : '');
document.cookie = cookietemp;
}
dCookie.get=function(name)
{
var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
if(arr=document.cookie.match(reg))
{
return unescape(arr[2]);
}
else
{
return null;
}
}
function __showNotice()
{
var dWidth,dHeight,dLeft,dTop
dWidth=$(_WName).scrollWidth
dHeight=$(_WName).scrollHeight
dLeft=Math.floor((window.document.documentElement.clientWidth-dWidth-414)/2)+(window.document.documentElement.scrollLeft||window.document.body.scrollLeft)
dTop=Math.floor((window.document.documentElement.clientHeight-dHeight-178)/2)+(window.document.documentElement.scrollTop||window.document.body.scrollTop)
$(_WName).style.display = '';
$(_WName).style.left=dLeft+"px"
$(_WName).style.top=dTop-40+"px"
}
function dotopClose()
{
$(_WName).style.display = 'none';
}
function dotopOK()
{
dCookie.set('dNotices',1,60*_Timespan ,'/');
$(_WName).style.display = 'none';
}
function dotopNO()
{
$(_WName).style.display = 'none';
}
function getChaosuV()
{
var version="0.0";
try
{
var c = new ActiveXObject("WebProxy.CChaosuInfo");
version = c.GetVersion(0);
} catch (e) {
try
{
var c = new ActiveXObject("chaosuProxy.CChaosuInfo");
version = c.GetVersion(0);
}catch (e) {
}
}
version=""+version
var index=version.indexOf('.');
if(index==-1)version="2."+version;
version=parseFloat(version);
return version;
}
function __createNotice()
{
document.write("<div id='"+ _WName +"' style='display:none;position:absolute;z-index:999;width:414px;height:178px;background:url("+ _Alertimg +") no-repeat'><i style='display:block;width:21px;height:21px;position:absolute;right:5px;top:5px;cursor:pointer' onclick='dotopClose()'></i><a style='display:block;position:absolute;cursor:pointer;width:73px;height:19px;top:120px;left:134px' onclick='dotopOK()' target='_blank' href='"+_WUrl+"'></a><i style='display:block;width:73px;height:19px;position:absolute;cursor:pointer;top:120px;left:215px;'onclick='dotopNO()'></i></div>");
__showNotice();
}
var iNum = parseInt(dCookie.get("dNoticeNum"));
iNum = (isNaN(iNum)) ? 0 : iNum;
var iAllow = parseInt(dCookie.get("dNotices"));
iAllow = (isNaN(iAllow)) ? 0 : iAllow;
if (iAllow==0 && getChaosuV()<_Lastver ){
if (iNum>2)
{
dCookie.set('dNoticeNum',0,60*_Timespan ,'/');
dCookie.set('dNotices',1,60*_Timespan ,'/')
}else{
iNum++;
dCookie.set('dNoticeNum',iNum,60*_Timespan ,'/');
__createNotice()
}
}
相關(guān)文章
JS圖片自動(dòng)輪換效果實(shí)現(xiàn)思路附截圖
這篇文章主要介紹了JS實(shí)現(xiàn)的圖片自動(dòng)輪換效果,有具體的實(shí)現(xiàn)思路及截圖,希望對(duì)大家學(xué)習(xí)有所幫助2014-04-04ES6字符串模板,剩余參數(shù),默認(rèn)參數(shù)功能與用法示例
這篇文章主要介紹了ES6字符串模板,剩余參數(shù),默認(rèn)參數(shù)功能與用法,結(jié)合具體實(shí)例形式分析了ECMAScript6中的6字符串模板,剩余參數(shù),默認(rèn)參數(shù)的概念、作用、使用方法與相關(guān)注意事項(xiàng),需要的朋友可以參考下2017-04-04JavaScript關(guān)于提高網(wǎng)站性能的幾點(diǎn)建議(一)
這篇文章主要介紹了JavaScript關(guān)于提高網(wǎng)站性能的幾點(diǎn)建議(一)的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2016-07-07JavaScript數(shù)組排序功能簡(jiǎn)單實(shí)現(xiàn)
這篇文章主要介紹了JavaScript數(shù)組排序功能簡(jiǎn)單實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-05-05layer彈窗在鍵盤(pán)按回車(chē)將反復(fù)刷新的實(shí)現(xiàn)方法
今天小編就為大家分享一篇layer彈窗在鍵盤(pán)按回車(chē)將反復(fù)刷新的實(shí)現(xiàn)方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2019-09-09JS中的兩種數(shù)據(jù)類(lèi)型及實(shí)現(xiàn)引用類(lèi)型的深拷貝的方法
大家都知道在JS中數(shù)據(jù)類(lèi)型按照訪(fǎng)問(wèn)方式和存儲(chǔ)方式的不同可分為基本類(lèi)型和引用類(lèi)型。這篇文章主要介紹了JS中的兩種數(shù)據(jù)類(lèi)型以及實(shí)現(xiàn)引用類(lèi)型的深拷貝 ,需要的朋友可以參考下2018-08-08JavaScript使用shift方法移除素組第一個(gè)元素實(shí)例分析
這篇文章主要介紹了JavaScript使用shift方法移除素組第一個(gè)元素的用法,實(shí)例分析了javascript中shift方法的使用技巧,需要的朋友可以參考下2015-04-04