41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
<script>
|
|
Z.onload(function()
|
|
{//初始化
|
|
Z("#nav_" + "${industryId}").addClass("z-active");
|
|
doKeywordIndustryTop('${industryId}', '${industrySubId}');
|
|
})
|
|
|
|
function doKeywordIndustryTop(industryId, industrySubId)
|
|
{
|
|
var ajax = new Z.Ajax();
|
|
ajax.setClassName("KeywordPresenter");
|
|
ajax.setMethodName("doKeywordIndustryTop");
|
|
ajax.addParam("industryId", industryId);
|
|
ajax.addParam("industrySubId", industrySubId);
|
|
ajax.setFailureAlert();
|
|
ajax.setSuccess(function(){
|
|
|
|
var text = this.responseText;
|
|
Z("#resultWrap").htmlc(text);
|
|
});
|
|
ajax.execute();
|
|
}
|
|
</script>
|
|
|
|
${zhiqim_manager_breadcrumb("关键词排行榜")}
|
|
${zhiqim_manager_content()}
|
|
|
|
<#-- 导航栏 -->
|
|
<div class="z-tabnav-main z-blue z-mg-b20">
|
|
<nav>
|
|
<ul>
|
|
<li onclick="Z.Location.href('keywordTop.htm');">关键词排行榜</li>
|
|
<#for item : Global.get(DesignIndustryCache.class).getIndustryList()>
|
|
<li id="nav_${item.getIndustryId()}" onclick="Z.Location.href('keywordIndustryTop.htm?industryId=${item.getIndustryId()}&industrySubId=${LabelDao.getIndustrySubId(item.getIndustryId())}');">${item.getIndustryName()}</li>
|
|
</#for>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
|
|
<div id="resultWrap"></div>
|
|
${zhiqim_manager_content_end()} |