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

Jsp/Servlet

开发平台:

Java

  1. function setSpeedCount(speedCount) {
  2. addform.speedCount.value = speedCount;
  3. }
  4. function setPptPath(pptPath) {
  5. addform.pptPath.value = pptPath;
  6. }
  7. function setUseCard(useCard) {
  8. var obj = document.all.item("isUseCard");
  9. if (useCard=="true")
  10. obj.checked = true;
  11. else
  12. obj.checked = false;
  13. }
  14. function setParagraph() {
  15. var oEditor=eval("idContent"+"oEdit1");
  16. var oRng=oEditor.document.selection.createRange();
  17. var isFocus = oEdit1.checkFocus();
  18. if (!isFocus)
  19. return;
  20. oRng.text = "[p]" + oRng.htmlText + "[/p]";
  21. }
  22. function setSentence() {
  23. var oEditor=eval("idContent"+"oEdit1");
  24. var oRng=oEditor.document.selection.createRange();
  25. var isFocus = oEdit1.checkFocus();
  26. if (!isFocus)
  27. return;
  28. oRng.text = "[s]" + oRng.htmlText + "[/s]";
  29. }