注意:
该代码请慎重使用,虽然能有效提高网站的百度关键词指数和展现量等,但这个也属于广告了,凡事有利有弊,
这广告也是影响用户体验的,谁也不想打开网站就弹出百度吧。
代码分享出来了,做个备份记录,有需要的也可以拿去用。
代码
<script>
if (getCookie("baidu_tc")!="1"){
var array = new Array('奇妖网','奇妖','7i71.com');
document.write('<a href="http://www.baidu.com/s?ie=UTF-8&wd=' + encodeURIComponent(array[Math.floor(Math.random()*(array.length))]) + '" target="_blank" style="position: absolute; z-index: 9999999999; opacity: 0.1;top: 0px; left: 0px; width: 100%; height: '+document.body.offsetHeight+'px; background-color: rgb(255, 255, 255);" id="baidu_tc" onclick="baidu_tc();"></a>');
function baidu_tc(){
document.getElementById("baidu_tc").style.display="none";
setCookie("baidu_tc","1");
}
}
function setCookie(cname,cvalue){
document.cookie = cname + "=" + cvalue + "; path=/";
}
function getCookie(cname){
var name = cname + "=";
var ca = document.cookie.split(';');
for(var i=0; i<ca.length; i++) {
var c = ca[i].trim();
if (c.indexOf(name)==0){
return c.substring(name.length,c.length);
}
}
return "";
}
</script>