显示、隐藏评论者信息
这个功能很多主题都有,旨在减小页面篇幅、提高用户体验,我的这个主题本来也是预留了这个功能,但是因为鄙人懒所以一直没有改造。最近这阵子小恙再加上本来也懒所以也一直没有折腾博客,觉得再不折腾折腾博客兴许就这么闲下来了。
望高手指正
JS代码如下:
var cmtinfo = jQuery('#cmtinfo'); if (cmtinfo.length>0){ var hideinfo = cmtinfo.find('#hide_author_info'); var showinfo = cmtinfo.find('#show_author_info'); var authorinfo = jQuery('#author_info'); authorinfo.hide(); showinfo.click(function(){jQuery(this).fadeOut(function(){hideinfo.fadeIn();});authorinfo.fadeIn();}); hideinfo.click(function(){jQuery(this).fadeOut(function(){showinfo.fadeIn();});authorinfo.fadeOut();}); } #cmtinfo 是有信息的访客所显示访客新的一个 DIV #hide_author_info、#show_author_info 一个是隐藏按钮一个是显示按钮 #author_info 是 #cmtinfo 的一个子 DIV
标签:WordPress
相关阅读 >>
几个优化wordpress中javascript加载体验的插件介绍
nginx服务器下使用rewrite重写url以实现伪静态的示例
wordpress提示require_once() failed opening required的解决方法
更多相关阅读请进入《wordpress》频道 >>