生成具體內(nèi)容頁時頁面源代碼不一致問題的解決_動易Cms教程
教程Tag:暫無Tag,歡迎添加,賺取U幣!
一次在生成動易網(wǎng)校的“網(wǎng)校新聞”欄目時候,生成時發(fā)現(xiàn)問題,經(jīng)過自己的測試片刻之后得于解決,剛好想起以前也有朋友問起這個問題,順便做個幫助文章,供需要的會員參考:
本次我是對模板做優(yōu)化的時候進(jìn)行生成行為,所以必須對模板生成之后的代碼進(jìn)行檢查。
我的內(nèi)容頁模板(片段,截到head區(qū)):
以下是代碼片段: 〈html〉 〈head〉 〈title〉{$PageTitle}-動易網(wǎng)校,最齊全的動易模板,動易插件,動易教程站〈/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; } //雙擊鼠標(biāo)滾動屏幕的代碼 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〉 |
很明顯,在這里,我針對要害字做了簡單優(yōu)化,即以下部分:
〈title〉{$PageTitle}-動易網(wǎng)校,最齊全的動易模板,動易插件,動易教程站〈/title〉 〈meta name="Keywords" content="{$PageTitle}-{$Keyword}"〉 〈meta name="Description" content="{$PageTitle}-{$Keyword}"〉 |