wysiwyg.js是一款所見即所得的輕量級富文本編輯器插件。wysiwyg.js沒有任何依賴,大小隻有12k。該富文本編輯器的特色還有:html
- 能夠將任何HTML元素設置爲contenteditable(可編輯)模式。
- 支持選擇事件:例如工具條。
- 支持鍵盤事件:例如處理熱鍵。
- 支持佔位符:能夠顯示和隱藏佔位文字。
- 提供衆多的方法:.bold(), .forecolor(), .inserthtml()...。
瀏覽器兼容node
- Internet Explorer 6+
- Firefox 3.5+
- Chrome 4+
- Safari 3.1+
若是一個<textarea>
已經被做爲「元素」使用,該富文本編輯器插件將:瀏覽器
- 將
<textarea>
保持爲同步狀態。 - 若是瀏覽器不支持
contenteditable
則將<textarea>
回退。 - 舊的 iOS 和 Android 2.3-也將回退爲
<textarea>
。
該富文本編輯器還有一個大小10k(minified)的jQuery插件-$.wysiwyg(),在加上一個配套的2k CSS文件能夠建立所有功能的wysiwyg富文本編輯器。它依賴於:編輯器
- wysiwyg.js
- jQuery
- FontAwesome (或 JPG/PNG/GIF/SVG 圖片)
wysiwyg.js-API
// create wysiwyg: var wysiwygeditor = wysiwyg({ element: document.getElementById('editor-id'), onkeypress: function( code, character, shiftKey, altKey, ctrlKey, metaKey ) { }, onselection: function( collapsed, rect, nodes, rightclick ) { }, onplaceholder: function( visible ) { }, hijackcontextmenu: false }); // properties: wysiwygeditor.getElement(); wysiwygeditor.getHTML(); -> 'html' wysiwygeditor.setHTML( html ); wysiwygeditor.getSelectedHTML(); -> 'html'|false // selection and popup: wysiwygeditor.collapseSelection(); wysiwygeditor.openPopup(); -> popup-handle wysiwygeditor.closePopup(); // exec commands: wysiwygeditor.removeFormat(); wysiwygeditor.bold(); wysiwygeditor.italic(); wysiwygeditor.underline(); wysiwygeditor.strikethrough(); wysiwygeditor.forecolor( '#color' ); wysiwygeditor.highlight( '#color' ); wysiwygeditor.fontName( fontname ); wysiwygeditor.fontSize( fontsize ); wysiwygeditor.subscript(); wysiwygeditor.superscript(); wysiwygeditor.align( 'left'|'center'|'right'|'justify' ); wysiwygeditor.format( tagname ); wysiwygeditor.insertLink( 'http://url.com/' ); wysiwygeditor.insertImage( 'http://url.com/' ); wysiwygeditor.insertHTML( 'html' ); wysiwygeditor.insertList( ordered );