PHP網(wǎng)頁 Ewebeditor 編輯器嵌入方法
更新時間:2009年07月05日 13:23:44 作者:
因為ewebeditor編輯器的功能強大,容易擴展等原因,一直是大家比較喜愛的編輯器,所以下面介紹下ewebeditor如何跟php結合。
(1)在 </head> 之前加上下面一段代碼:(得到 ewebeditor 中編輯的內(nèi)容)
<script>
function checkForm()
{
document.form1.content .value = window.ewebeditor .getHTML();
************getHTML() 獲得編輯區(qū)內(nèi)容
************ 此處的名字 ewebeditor 要與 iframe 中的 name="ewebeditor" 相同
************content.value 也要與 content 中的 <input > 中相對應
}
</script>
(2)下面一段代碼是把 ewebeditor 嵌入到網(wǎng)頁中:
<tr>
<td align="right" width="5%" > 內(nèi)容: </td>
<td width="95%">
<input type="hidden" name="content" id="content" value ="">
**********id="content" 中的 content 要與 <iframe> 中的 id=content 相同!
<iframe id="ewebeditor" name="ewebeditor" src="ewebeditor/ewebeditor.php?id=content " frameborder="0" scrolling="no" width="100%" HEIGHT="450">
</iframe>
</td>
</tr>
<script>
function checkForm()
{
document.form1.content .value = window.ewebeditor .getHTML();
************getHTML() 獲得編輯區(qū)內(nèi)容
************ 此處的名字 ewebeditor 要與 iframe 中的 name="ewebeditor" 相同
************content.value 也要與 content 中的 <input > 中相對應
}
</script>
(2)下面一段代碼是把 ewebeditor 嵌入到網(wǎng)頁中:
<tr>
<td align="right" width="5%" > 內(nèi)容: </td>
<td width="95%">
<input type="hidden" name="content" id="content" value ="">
**********id="content" 中的 content 要與 <iframe> 中的 id=content 相同!
<iframe id="ewebeditor" name="ewebeditor" src="ewebeditor/ewebeditor.php?id=content " frameborder="0" scrolling="no" width="100%" HEIGHT="450">
</iframe>
</td>
</tr>
相關文章
PHP網(wǎng)頁 Ewebeditor 編輯器嵌入方法
因為ewebeditor編輯器的功能強大,容易擴展等原因,一直是大家比較喜愛的編輯器,所以下面介紹下ewebeditor如何跟php結合。2009-07-07
eWebEditor_v280_Free_Final最好用的網(wǎng)頁編輯器下載
eWebEditor_v280_Free_Final最好用的網(wǎng)頁編輯器下載...2007-09-09
FCKeditor提供了一個完整的JavaScript API
FCKeditor提供了一個完整的JavaScript API(Application Public Interface),你可以利用這些API來處理FCK編輯器,只要它被加載完成或在正在運行中.2009-12-12
關于jsp版ueditor1.2.5的部分問題解決(上傳圖片失敗)
這篇文章主要介紹大家在使用jsp版ueditor1.2.5的碰到的一些問題解決方法,需要的朋友可以參考下2013-06-06
常用網(wǎng)頁編輯器漏洞手冊(全面版)fckeditor,ewebeditor
常用網(wǎng)頁編輯器漏洞手冊(全面版)fckeditor,ewebeditor,使用這類編輯器的朋友一定要注意下。2011-04-04

