POST TIME:2018-01-11 21:58
首頁(yè)的互動(dòng)中心進(jìn)行細(xì)微的修改,同時(shí)也給大家分享一下!如果將dedecms首頁(yè)互動(dòng)中心默認(rèn)顯示會(huì)員,改為評(píng)論或踩踩的方法??棄?mèng)模板
1、打開(kāi)首頁(yè)模板 templetsdefaultindex.htm
2、找到第19行:
$("a[_for=uc_member]").mouseover();
3、把第19行的uc_member改成uc_comment,這樣默認(rèn)顯示的就是評(píng)論了
4、同理,把第19行的uc_member改成uc_digg,這樣默認(rèn)顯示的就是踩踩
--------------------------------------------------------------------------------
$(function(){
$("a[_for]").mouseover(function(){
$(this).parents().children("a[_for]").removeClass("thisclass").parents().children("dd").hide();
$(this).addClass("thisclass").blur();
$("#"+$(this).attr("_for")).show();
});
$("a[_for=uc_member]").mouseover();
$("a[_for=flink_1]").mouseover();
});
------------------------------------^
最后記得用“一鍵更新全站”進(jìn)行更新操作.
