生成具体内容页时页面源代码不一致问题的解决_动易Cms教程
教程Tag:暂无Tag,欢迎添加,赚取U币!
一次在生成动易网校的“网校新闻”栏目时候,生成时发现问题,经过自己的测试片刻之后得于解决,刚好想起以前也有朋友问起这个问题,顺便做个帮助文章,供需要的会员参考:
本次我是对模板做优化的时候进行生成行为,所以必须对模板生成之后的代码进行检查。
我的内容页模板(片段,截到head区):
以下是代码片段: 〈html〉 〈head〉 〈title〉{$PageTitle}-动易网校,最齐全的动易模板,动易插件,动易教程站〈/title〉 〈meta name="Keywords" content="{$PageTitle}-{$Keyword}"〉 〈meta name="Description" content="{$PageTitle}-{$Keyword}"〉 〈meta http-equiv="Content-Type" content="text/html; charset=gb2312"〉 〈style type="text/css"〉 〈!-- .style2 { color: #FF0000; font-weight: bold; } --〉 〈/style〉 {$Skin_CSS} {$MenuJS} 〈script language="JavaScript" type="text/JavaScript"〉 //改变图片大小 function resizepic(thispic) { if(thispic.width〉700) thispic. } //无级缩放图片大小 function bbimg(o) { var zoom=parseInt(o.style.zoom, 10)||100; zoom =event.wheelDelta/12; if (zoom〉0) o.style.zoom=zoom ’%’; return false; } //双击鼠标滚动屏幕的代码 var currentpos,timer; function initialize() { timer=setInterval ("scrollwindow ()",30); } function sc() { clearInterval(timer); } function scrollwindow() { currentpos=document.body.scrollTop; window.scroll(0, currentpos); if (currentpos !=document.body.scrollTop) sc(); } document.onmousedown=sc document.ondblclick=initialize //更改字体大小 var status0=’’; var curfontsize=10; var curline function fontZoomA(){ if(curfontsize〉8){ document.getElementById(’fontzoom’).style.fontSize=(--curfontsize) ’pt’; document.getElementById(’fontzoom’).style.lineHeight=(--curlineheight) ’pt’; } } function fontZoomB(){ if(curfontsize〈64){ document.getElementById(’fontzoom’).style.fontSize=( curfontsize) ’pt’; document.getElementById(’fontzoom’).style.lineHeight=( curlineheight) ’pt’; } } 〈/script〉 {$MY_ResumeError} 〈/head〉 |
很明显,在这里,我针对要害字做了简单优化,即以下部分:
〈title〉{$PageTitle}-动易网校,最齐全的动易模板,动易插件,动易教程站〈/title〉 〈meta name="Keywords" content="{$PageTitle}-{$Keyword}"〉 〈meta name="Description" content="{$PageTitle}-{$Keyword}"〉 |