xheditor是一个优秀的网页在线编辑器,同时又是免费的,拥有众多用户。
下面与大家分享一些与xheditor有关的经验:如何取消上传图片的功能,即在xheditor界面隐藏上传图片的按钮。
要实现这个功能,就得使用 tools 参数了,即自定义工具按钮。
其参数值为:full(完全),mfull(多行完全),simple(简单),mini(迷你),或者自定义字符串,例如:'Cut,Copy,Paste,Pastetext,|,Source,Fullscreen,About'
请注意,除非你使用自定义功能,否则都会显示上传图片的按钮。
所以,当你想要其它功能,仅想隐藏图片上传,那么,你得自定义用到的每种功能。比如:
Cut:剪切
Copy:复制
Paste:粘贴
Pastetext:文本粘贴
Blocktag:段落标签
Fontface:字体
FontSize:字体大小
Bold:粗体
Italic:斜体
Underline:下划线
Strikethrough:中划线
FontColor:字体颜色
BackColor:字体背景色
SelectAll:全选
Removeformat:删除文字格式
Align:对齐
List:列表
Outdent:减少缩进
Indent:增加缩进
Link:超链接
Unlink:删除链接
Anchor:锚点
Img:图片
Flash:Flash动画
Media:Windows media player视频
Hr:插入水平线
Emot:表情
Table:表格
Source:切换源代码模式
Preview:预览当前代码
Print:打印
Fullscreen:切换全屏模式
About:关于xhEditor
上述的参数中,只要不包括Img:图片;Flash:Flash动画;Media:Windows media player视频,那么,就不能上传图片和各种文件了,下面,给你一个简洁的编辑器对应的HTML代码:
<textarea name="content" id="Mycontent1" class="xheditor {tools:'Cut,Copy,Paste,Pastetext,Blocktag,Fontface,cleanPaste:2,upImgUrl:'upload.aspx',upFlashUrl:'upload.aspx',upMediaUrl:'upload.aspx',emotPath:'MyEditor/xheditor_emot/'}" style="width:600px; height:160px;"></textarea>