script.js
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:0k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. function setParagraph() {
  2. var oEditor=eval("idContent"+"oEdit1");
  3. var oRng=oEditor.document.selection.createRange();
  4. var isFocus = oEdit1.checkFocus();
  5. if (!isFocus)
  6. return;
  7. oRng.text = "[p]" + oRng.htmlText + "[/p]";
  8. }
  9. function setSentence() {
  10. var oEditor=eval("idContent"+"oEdit1");
  11. var oRng=oEditor.document.selection.createRange();
  12. var isFocus = oEdit1.checkFocus();
  13. if (!isFocus)
  14. return;
  15. oRng.text = "[s]" + oRng.htmlText + "[/s]";
  16. }