xhEditor编辑器

xhEditor编辑器
下载地址:http://xheditor.com/download
要用编辑器需要加入的东西:
1.xheditor-zh-cn.min.js和jquery.js文件
2.xheditor_emot、xheditor_plugins和xheditor_skin三个文件夹
放到Java项目中的webRoot下边,在页面引入两个js文件,加一个textarea,根据id得到textarea,给其添加javascript脚本
$(document).ready(function(){
    $('#content2').xheditor({tools:'full',skin:'o2007blue',width:'500',height:'150',cleanPaste:0});
});
就可以变成文本编辑器。

可以使用如下方法:
方法1:在textarea上添加属性: class="xheditor {skin:'default'}",前面主参数也可以是xheditor-mfull、xheditor-mini和xheditor-simple,分别加载多行完全、迷你和简单工具栏,后面详细参数可以省略
方法2:在您的页面初始JS代码里加上: $('#elm1').xheditor();
$('#elm1').xheditor();
例如:
$({
$('#elm1').xheditor();
});
相应的卸载编辑器的代码为
$('#elm1').xheditor(false);


重要说明:2种初始化方法只能选择其中一种,不能混合使用,优先级分别是:方法1>方法2,例如用了方法1,方法2就无法使用了

你可能感兴趣的:(JavaScript,java,jquery,编程,脚本)