POST TIME:2020-03-28 17:07
最近發(fā)現(xiàn)一比較實用的網(wǎng)站,于注冊了會員,誰知一登陸,發(fā)現(xiàn)一個怪事,就是會員登錄后網(wǎng)站上的廣告就不顯示。感覺這個措施或許在會員體驗性有不錯的效果,于是研究了起來,終于尋找到織夢模板會員登陸后不顯示廣告的方法。
代碼如下:
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>")
}
紅色部分為廣告代碼