我們用百度編輯器在文章中經(jīng)常會插入各種代碼,在第一次添加插入代碼后,源碼模式下看起來是正常的,但是為什么保存完之后,數(shù)據(jù)庫中正常,但是編輯器中不正常呢?那是因為后臺的百度編輯器就會把script標(biāo)簽給過濾掉,不能完整的顯示。今天我們印秀網(wǎng)絡(luò)來教你解決這個問題。
很多富文本編輯器都有兩種初始化方式,以UEditor為例,一種是textarea標(biāo)簽,一種是script標(biāo)簽。
舉例textarea方式:
<textarea id="container" name="content"> 這里寫你的初始化內(nèi)容</textarea><script type="text/javascript" src="ueditor.config.js"></script><script type="text/javascript" src="ueditor.all.js"></script><script type="text/javascript"> var ue = UE.getEditor('container');</scritp>
舉例script方式:
<script id="container" name="content" type="text/plain"> 這里寫你的初始化內(nèi)容</script><script type="text/javascript" src="ueditor.config.js"></script><script type="text/javascript" src="ueditor.all.js"></script><script type="text/javascript"> var ue = UE.getEditor('container');</script>
兩種方式的區(qū)別也只在于容器,我之前一直使用的是textarea方式,因為當(dāng)時UEditor的script方式有一些小問題。
在今天尋找過濾問題的解決辦法時,想了很多辦法,看別人的配置文件等,但終究沒解決。在不斷搜索中,打開UEditor之前的幫助文檔,現(xiàn)在官網(wǎng)已經(jīng)去除了該舊文檔的鏈接,在該文檔中看到了這樣一個問題:
首先要說明一點的是,UEditor也支持textarea標(biāo)簽作為編輯器的外圍容器,只要將對應(yīng)的標(biāo)簽名字換成textarea即可。除此之外,UEditor還支持使用div和script標(biāo)簽作為其容器。之所以要這樣做,只是為了盡最大可能去滿足和適應(yīng)用戶的各種不同需求。官方推薦使用script標(biāo)簽的原因是textarea會在提交數(shù)據(jù)的時候自動對里面的部分html文本進行一次特殊字符轉(zhuǎn)義,從而導(dǎo)致有些不熟悉的用戶在再編輯的時候出現(xiàn)編碼混亂的問題。而使用script標(biāo)簽可以很好地克服這個缺點。
官方文檔里面提到了“官方推薦使用script標(biāo)簽的原因是textarea會在提交數(shù)據(jù)的時候自動對里面的部分html文本進行一次特殊字符轉(zhuǎn)義”,看到這句話后豁然開朗,一切問題的根源都在于容器標(biāo)簽而已,將容器標(biāo)簽修改為script后,一切都正常了。
1、修改inc/AspCms_CommonFun.asp,代碼728處左右
Function decodeHtml(Byval str) IF len(str)=0 OR Trim(str)="" or isNull(str) then exit function str=replace(str,"'",CHR(39)) str=replace(str," "," ") decodeHtml=str End Function
添加下面一段新代碼
Function decodeHtml2(Byval str) IF len(str)=0 OR Trim(str)="" or isNull(str) then exit function str=replace(str," "," ") str=replace(str,""",CHR(34)) decodeHtml2=str End Function
2、修改inc/AspCms_templateFun.asp,代碼624處左右
添加下面一段新代碼
content=replacekey(decodeHtml2(rsObj("Content")))
3、修改aspcms_admin/_content/_Content/AspCms_ContentAdd.asp
<script id="myEditor" name="Content" type="text/plain"><%=content%></script> <script> UE.getEditor('myEditor'); </script>
4、修改aspcms_admin/_content/_Content/AspCms_ContentEdit.asp
<script id="myEditor" name="Content" type="text/plain"><%=content%></script> <script> UE.getEditor('myEditor'); </script>
5、修改aspcms_admin/_content/AspCms_ContentFun.asp,代碼237行下添加一段代碼
Content=decodeHtml2(rs("Content"))