做网站的时候,可能需要把统计部分的代码隐藏,那样既可以实现统计的功能,表面上又看不到统计功能的按钮。
下面就是一个常用的网站footer代码,加粗部分就是统计代码,并且实现了隐藏效果。
<div class="foot">
<p class="foot_nav"><a onfocus=blur() href="{#cid#}&hid=1" target="_blank">关于我们</a> - <a onfocus=blur() href="{#cid#}&id=12" target="_blank">隐私保护</a> - <a onfocus=blur() href="{#cid#}&id=11" target="_blank">免责声明</a> - <a href="{#cid#}&id=9" target="_blank">广告投放</a> - <a onfocus=blur() href="{#cid#}&id=7" target="_blank">联系我们</a> - <a onfocus=blur() href="{#cid#}&id=8" target="_blank">合作伙伴</a> - <a onfocus=blur() href="{#cid#}&id=10" target="_blank">条款申明</a></p>
<p class="foot_text">Copyright @ 2013 {$showcity(2,{#cid#},2,,{@name@})$}{$getwebcache(webname)$} Powered By <a onfocus=blur() href="; target="_blank">ThshoNet</a> <a onfocus=blur() href="; target="_blank">Version 2013</a><br />联系电话:{$getwebcache(webtel)$} E-mail:{$getwebcache(webemail)$} QQ:{$getwebcache(webqq)$} 联系地址:{$getwebcache(webadd)$}<br />
<a href="; target="_blank">ICP备案:{$getwebcache(webicp)$} </a>
<span style="display:none"><script type="text/javascript">var cnzz_protocol = (("https:" == document.loca) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1000188527'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "; type='text/javascript'%3E%3C/script%3E"));</script></span></p>
</div>
在统计代码也就是script外面增加style="display:none"就可以实现了。