< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html xmlns ="http://www.w3.org/1999/xhtml" >
< head >
< title >中国站长天空-网页特效-综合特效-强制点击广告代码(一) </title>
< meta http-equiv ="content-type" content ="text/html;charset=gb2312" >
< ! --把下面代码加到<head></head>之间-->
< script language ="javascript" >
var num = 2;    
var mypage = 'http://www.XXXX.cn';    
var pissoff = '请先点击上面的链接!';
allow = Array();
allow[num] = 2;
function gotoit(link){
if (link != num){
allow[link] = 2;
} else {
for (i=1;i<=num;i++){
if (allow[i] != 2){
i = num + 1;
lemmeIn = 0;
} else {
lemmeIn = 1;
}
}
if (lemmeIn == 1){
window.location = mypage;
} else {
alert(pissoff);
}
}
}
//--->
</script>
</head>
< body >
< ! --把下面代码加到<body></body>之间-->
< a href ="http://www.XXX.cn" target ="_blank" onClick ="gotoit(1)" >广告链接 </a> < br >
< a href ="javascript:gotoit(num)" >请先点击上面的链接再点击这里下载 </a>
</body>
</html>
第二种:
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
< html xmlns ="http://www.w3.org/1999/xhtml" >
< head >
< title >中国站长天空-网页特效-综合特效-强制点击广告代码(二) </title>
< meta http-equiv ="content-type" content ="text/html;charset=gb2312" >
< ! --把下面代码加到<head></head>之间-->
< script language ="javascript" >
<!--
function MM_showHideLayers() {//v2.0
var i, visStr, args, theObj;
args = MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3) {//with arg triples (objNS,objIE,visStr)
visStr = args[i+2];
if (navigator.appName == 'Netscape' && document.layers != null) {
theObj = eval(args[i]);
if (theObj) theObj.visibility = visStr;
} else if (document.all != null) {//IE
if (visStr == 'show') visStr = 'visible';//convert vals
if (visStr == 'hide') visStr = 'hidden';
theObj = eval(args[i+1]);
if (theObj) theObj.style.visibility = visStr;
} }
}
function MM_preloadImages() {//v2.0
if (document.p_w_picpaths) {
var imgFiles = MM_preloadImages.arguments;
if (document.preloadArray==null) document.preloadArray = new Array();
var i = document.preloadArray.length;
with (document) for (var j=0; j<imgFiles.length; j++) if (imgFiles[j].charAt(0)!="#"){
preloadArray[i] = new Image;
preloadArray[i++].src = imgFiles[j];
} }
}
//-->
</script>
</head>
< body >
< ! --把下面代码加到<body></body>之间-->
< div id ="Layer1" style ="position:absolute;top:75px;left:10px;width:306px;height:63px;z-index:1;visibility:hidden;" > < a href ="http://www.XXX.cn" >下载 </a> </div>
< div id ="Layer2" style ="position:absolute;top:10px;left:10px;width:147px;height:82px;z-index:2;visibility: visible;" > < a href ="http://www.XXX.cn" target ="_blank" > < img src ="http://www.XXX.cn/effect/p_w_picpaths/234×60.gif" border ="0" onMouseDown ="MM_showHideLayers('document.layers[\'Layer1\']','document.all[\'Layer1\']','show')" > </a> </div>
</body>
</html>