dotopAlert 提示用戶需安裝播放器的代碼

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)文章
avalon js實(shí)現(xiàn)仿google plus圖片多張拖動(dòng)排序附源碼下載
這篇文章主要介紹了avalon js實(shí)現(xiàn)仿google plus圖片多張拖動(dòng)排序附源碼下載的相關(guān)資料,需要的朋友可以參考下2015-09-09
Clipboard.js 無(wú)需Flash的JavaScript復(fù)制粘貼庫(kù)
這篇文章主要介紹了JavaScript 內(nèi)容復(fù)制(無(wú)需flash) Clipboard.js使用方法,需要的朋友可以參考下2015-10-10
微信小程序通過(guò)websocket實(shí)時(shí)語(yǔ)音識(shí)別的實(shí)現(xiàn)代碼
這篇文章主要介紹了微信小程序通過(guò)websocket實(shí)時(shí)語(yǔ)音識(shí)別,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2020-08-08
JavaScript實(shí)現(xiàn)淘寶網(wǎng)圖片的局部放大功能
這篇文章主要為大家詳細(xì)介紹了JavaScript實(shí)現(xiàn)淘寶網(wǎng)圖片的局部放大功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-05-05
Next.js服務(wù)端渲染超時(shí)導(dǎo)致生產(chǎn)事故的問(wèn)題排查和解決辦法
Next.js是一個(gè)基于React的開(kāi)源框架,用于構(gòu)建服務(wù)端渲染(SSR)的Web應(yīng)用程序,它簡(jiǎn)化了許多復(fù)雜的配置,讓開(kāi)發(fā)者可以專(zhuān)注于編寫(xiě)應(yīng)用邏輯而不是基礎(chǔ)設(shè)施,前幾天公司平臺(tái)首頁(yè)崩潰了 504 Time-out,這里記錄一下問(wèn)題排查和解決的過(guò)程,需要的朋友可以參考下2025-03-03
微信JS-SDK坐標(biāo)位置如何轉(zhuǎn)換為百度地圖坐標(biāo)
這篇文章主要介紹了微信JS-SDK坐標(biāo)位置如何轉(zhuǎn)換為百度地圖坐標(biāo) 的相關(guān)資料,感興趣的小伙伴們可以參考一下2016-07-07
去除element-ui中Dialog對(duì)話框遮罩層方法詳解
這篇文章主要為大家介紹了去除element-ui中Dialog對(duì)話框遮罩層方法詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-12-12
利用xlsx.js讀取excel文件的詳細(xì)過(guò)程
如果你需要在瀏覽器端處理Excel文件,那么xlsx.js可能是一個(gè)不錯(cuò)的選擇,這篇文章主要介紹了利用xlsx.js讀取excel文件的詳細(xì)過(guò)程,文中通過(guò)代碼介紹的非常詳細(xì),需要的朋友可以參考下2025-04-04
javascript刪除元素節(jié)點(diǎn)removeChild()用法實(shí)例
這篇文章主要介紹了javascript刪除元素節(jié)點(diǎn)removeChild()用法,實(shí)例分析了removeChild()方法移除節(jié)點(diǎn)的使用技巧,需要的朋友可以參考下2015-05-05
用js閉包的方法實(shí)現(xiàn)多點(diǎn)標(biāo)注冒泡示例
這篇文章主要介紹了用js閉包的方法實(shí)現(xiàn)多點(diǎn)標(biāo)注冒泡,需要的朋友可以參考下2014-05-05

