9
問題:CONTENTEDITABLE =假在CONTENTEDITABLE =真
我觀察到在瀏覽器,當一個通過刪除它們之間的分離連接的兩個p 標籤發生不期望的行爲和Opera。 Chrome和Opera刪除contenteditable = false元素(小部件)後的文本。
實施例:
HTML:
<div contenteditable="true" class="editor">
<p>This is the first paragraph.</p>
<p>←Place your cursor here and press backspace. <span class="widget" contenteditable="false">widget</span> Text after widget</p>
</div>
CSS:
.widget{
display: inline-block;
padding: 5px;
background-color: gray;
}
.editor{
font: 20px Trebuchet MS
}
問題:
爲什麼?如何解決它?
你的意思是歌劇與閃爍引擎?我無法在Opera 12中確認。 – Bergi
是的。歌劇19.0 – user1103291