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中肯定不是一个好的编码习惯。