fckeditor預設載入的時候會在source code預設一個
如果輸入東西再把東西都清掉的話,source code便會留下一個<br />
請問要怎樣設定可以當user把東西清空時就連source code都是空的
chan15提到:
ckeditor預設載入的時候會在source code預設一個
1.不同瀏覽器測試看看
2.修改 fckconfig.js 組態檔:
FCKConfig.FillEmptyBlocks = false;
FCKConfig.IgnoreEmptyParagraphValue = true;
沒用耶,他就是會加一個<br />
另一招:javascript 自己設定HTML內容方式
<pre class="c" name="code"><script type="text/javascript">
window.onload = function(){
editor=FCKeditorAPI.GetInstance('FCKeditor1');
}
function OnClearContent() {
//var editor=FCKeditorAPI.GetInstance('FCKeditor1');
//var sValue = editor.GetHTML(); //取得FCKeditor內容
//alert(sValue); //顯示FCKeditor內容
editor.SetHTML(''); //設定FCKeditor內容為空
}
</script>
...
<button onclick="editor.InsertHtml('Hello World!!')" style="font-size:9pt;">Insert Content</button>
好像不是這樣
要看你的fckeditor是怎麼載入的
如果有綁Html物件的話
去看你所綁定的物件裡
是否有你說的