http://ckeditor.com/ 這是老大哥
http://kindeditor.org/ 這是新秀
http://htmleditor.in/firefox-html-editor.html 未知數
一堆的相關UBB工具(長的,短的,高的,矮的,胖的,瘦的,還有。。。)
替換TEXTAREA标簽:
<textarea rows="30" cols="50" name="editor01">請輸入
.</textarea>
<script type="text/javascript">CKEDITOR.replace('editor01');</script>
注意:要在textarea後面加入javascript.如果要在HEAD區寫javasript,那麼采用如下代碼:
<script type="text/javascript">
window.onload = function(){
CKEDITOR.replace( 'editor01' );
};
</script>
為了防止對象不存在window.onload,不是可用jquery的$(document).ready(function(){});
文章比較早,要麼JQuery不夠流行,要麼作者不熟悉,或者有其他考慮?
摻雜到HTML中肯定不是一個好的編碼習慣。