POST TIME:2020-03-28 17:07
最近發(fā)現(xiàn)一比較實(shí)用的網(wǎng)站,于注冊(cè)了會(huì)員,誰知一登陸,發(fā)現(xiàn)一個(gè)怪事,就是會(huì)員登錄后網(wǎng)站上的廣告就不顯示。感覺這個(gè)措施或許在會(huì)員體驗(yàn)性有不錯(cuò)的效果,于是研究了起來,終于尋找到織夢(mèng)模板會(huì)員登陸后不顯示廣告的方法。
代碼如下:
function getCookie(Name) {
var search = Name + "=";
if (window.document.cookie.length > 0) { // if there are any cookies
offset = window.document.cookie.indexOf(search);
if (offset != -1) { // if cookie exists
offset += search.length; // set index of beginning of value
end = window.document.cookie.indexOf(";", offset) // set index of end of cookie value
if (end == -1)
end = window.document.cookie.length;
return unescape(window.document.cookie.substring(offset, end));
}
}
return null;
}
var username
username=String(getCookie("DedeUserIDckMd5")).toLowerCase();
if (username.length<2 || username=="null")
{
document.writeln("<a href=&;http://www.xkzzz.com&; target=&;_blank&;>演示:俠客站工站</a>")
}
紅色部分為廣告代碼