欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP網(wǎng)頁(yè) Ewebeditor 編輯器嵌入方法

 更新時(shí)間:2009年07月05日 13:23:44   作者:  
因?yàn)閑webeditor編輯器的功能強(qiáng)大,容易擴(kuò)展等原因,一直是大家比較喜愛(ài)的編輯器,所以下面介紹下ewebeditor如何跟php結(jié)合。
(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 > 中相對(duì)應(yīng)
}
</script>
(2)下面一段代碼是把 ewebeditor 嵌入到網(wǎng)頁(yè)中:
<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>

相關(guān)文章

最新評(píng)論