如何实现织梦dedecms会员登陆后就不显示广告_DedeCms教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!
最近发现一比较实用的网站,于注册了会员,谁知一登陆,发现一个怪事,就是会员登录后网站上的广告就不显示。

感觉这个措施或许在会员体验性有不错的效果,于是研究了起来,终于寻找到织梦dedecms模板会员登陆后不显示广告的方法。
 
代码如下: 
  1. function getCookie(Name) {  
  2. var search = Name + "=";  
  3. if (window.document.cookie.length > 0) { // if there are any cookies  
  4. offset = window.document.cookie.indexOf(search);  
  5. if (offset != -1) { // if cookie exists  
  6. offset += search.length; // set index of beginning of value  
  7. end = window.document.cookie.indexOf(";", offset) // set index of end of cookie value  
  8. if (end == -1)  
  9. end = window.document.cookie.length;  
  10. return unescape(window.document.cookie.substring(offset, end));  
  11. }  
  12. }  
  13. return null;  
  14. }  
  15.   
  16. var username  
  17. username=String(getCookie("DedeUserIDckMd5")).toLowerCase();  
  18. if (username.length<2 || username=="null")  
  19. {  
  20. document.writeln("<a href=\"http:\/\/www.xkzzz.com\" target=\"_blank\">演示:侠客站工站<\/a>")  
  21. }  
 红色部分为广告代码 。仅供参考学习。

查看更多 DedeCms教程  织梦模板  织梦DedeCms视频教程  织梦dedecms专题

来源:模板无忧//所属分类:DedeCms教程/更新时间:2020-05-29
相关DedeCms教程