2013-03-12 39 views
1

是否可以通過內嵌CKEditor使TD標籤的內容可編輯?TD作爲CKEditor內聯實例

我寫代碼:

<div contenteditable="true"> 
    this content IS editable 
</div> 

<table> 
    <tr> 
     <td contenteditable="true"> not IS NOT editable </td> 
     <td contenteditable="true"> not IS NOT editable </td> 
    </tr> 
</table> 

測試:http://jsfiddle.net/martinba/JBFmd/1/

我無法找到,如果它是一個錯誤或功能。

回答