我有一個簡單的標記CONTENTEDITABLE:CONTENTEDITABLE:防止內部元件被刪除
<div class="example" contenteditable="true">
<div class="inside">Some content</div>
</div>
當我刪除「Some content
」,然後class="inside"
DIV也被刪除。內容被刪除後,有沒有辦法阻止內部div被刪除?
例如,這是我努力使一旦內容被刪除了的樣子。
<div class="example" contenteditable="true">
<div class="inside"></div> <!-- The div is not deleted -->
</div>
我環顧四周,但似乎並沒有一個明確的答案。
任何幫助將不勝感激。
謝謝。
https://jsfiddle.net/rzm156px/也不會被刪除。 –
嗯這很奇怪。在Chrome瀏覽器中,除了頂部帶'contenteditable' attr的div以外,所有內容都會被刪除。 –
號碼在你的CSS中的東西打破代碼。 –