如何獲取我在CLEditor中使用jquery keyup編寫的內容數據?從jquery獲取內容CLEditor
2
A
回答
2
使用CLEditor的.change
事件會更有意義嗎?從documentation:
變化 - 每當編輯 的內容改變時觸發此事件。由於更改檢測 是使用鍵盤和鼠標事件 完成的,因此用戶鍵入該事件時會頻繁出現 。
1
我使用的是1.3.0版本的cleditor的, 下面的代碼是非官方的, 我可能是糟糕的代碼,因爲我是小白空中接力和許多其他原因, 但直到下一個版本它爲我的伎倆: 這裏是我做過什麼:
在文件jquery.cleditor.js:
添加trickyMethod選項: 行100:
更換這
imagesPath: function() { return imagesPath(); },
本:
imagesPath: function() { return imagesPath(); },
trickyMethod: function(){}
充分利用trickyMethod被要求keyup事件: 行:此
$doc.click(hidePopups)
.bind("keyup mouseup", function() {
refreshButtons(editor);
});
:878
替換此
$doc.click(hidePopups)
.bind("keyup mouseup", function() {
refreshButtons(editor);
editor.options.trickyMethod(editor);
});
現在你可以在應用程序代碼,並與trickyMethod選項調用cleditor:
$("#input").cleditor({
width: 600,
height: 600,
trickyMethod: function(){ alert("sdf"); }
});
相關問題
- 1. JQuery:從iframe獲取內容?
- 2. 從json使用jQuery Mobile獲取內容
- 3. jquery從更新範圍獲取內容
- 4. 從jquery獲取iframe的內容
- 5. jQuery .load() - 從DOM中獲取td內容
- 6. 使用jquery從xml獲取Html內容
- 7. jQuery:獲取內容/ innerhtml onclick
- 8. 獲取幀內容與jQuery
- 9. jQuery的:獲取父內容
- 10. JQuery獲取span的內容
- 11. 從塊中獲取內容
- 12. 從html中獲取內容
- 13. 從XmlNodeList獲取XML內容
- 14. 從DIV內容獲取SRC
- 15. 從iFrame獲取內容
- 16. 從JSPWriter獲取內容
- 17. 從editText獲取內容
- 18. 從XML獲取內容PHP5
- 19. 從node_load獲取Facebook內容()
- 20. jQuery Cleditor在關鍵字上獲取textarea值
- 21. 從Ajax獲取容器的內容
- 22. 獲取內容
- 23. 獲取子div的內容jquery
- 24. Jquery - 獲取一行的所有內容
- 25. jQuery:獲取修改的iframe的內容
- 26. jQuery:獲取iframe內容,相同的域
- 27. JQuery - 獲取某些div的內容
- 28. 用jquery獲取網址的內容
- 29. wp_editor(),如何用jQuery獲取內容
- 30. jQuery + AJAX +跨域+獲取內容
是的......但如何讓更改事件的內容數據? – scippie 2012-02-19 14:08:38