我使用內聯Ckeditor
來編輯內容。默認情況下,內聯編輯器通過雙擊與contenteditable="true"
的div
激活。當我點擊一個按鈕時,我想激活這個內聯編輯器,並且當我點擊另一個按鈕時隱藏它。 下面是HTML代碼的例子:Ckeditor:根據需要顯示和隱藏內聯工具欄
<html>
<head>
<script src="ckeditor/ckeditor.js"></script>
</head>
<body>
<div id="first" contenteditable="true">first</div>
<div id="second" contenteditable="true">second</div>
<input type="button" value="show inline editor">
<input type="button" value="hide inline editor">
</body>
</html>
的jsfiddle顯示了默認的行爲,我想有http://jsfiddle.net/vdRYL/
結束這將是容易讓我們來解決這個問題,如果你能創造出CKEDITOR的默認行爲的jsfiddle(jsfiddle.net)。 – Rao
感謝您的回覆和編輯。這裏是jsfiddle:http://jsfiddle.net/vdRYL/ – user2265529