editorhelper.js
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. function checklength(theform) {
  2. if ($("posteditor_mode").value == '1') { 
  3. theform.message.value = html2bbcode(getEditorContents()); 
  4. }
  5. if (postmaxchars != 0) { 
  6. message = "系统限制: " + postminchars + " 到 " + postmaxchars + " 字符"; 
  7. }
  8. else { 
  9. message = ""; 
  10. }
  11. alert("n当前长度: " + mb_strlen(theform.message.value) + " 字符nn" + message);
  12. }
  13. function previewpost(theform) {
  14. if(!validate(theform, true)) {
  15. $('title').focus();
  16. return;
  17. }
  18. $("previewmessage").innerHTML = '<span class="bold"><span class="smalltxt">' + $('title').value + '</span></span><br /><br /><span style="font-size: 12px">' + bbcode2html(theform.message.value) + '</span>';
  19. $("previewtable").style.display = '';
  20. window.scroll(0, 0);
  21. }
  22. function clearcontent() {
  23. if(wysiwyg && bbinsert) {
  24. editdoc.body.innerHTML = is_moz ? '<br />' : '';
  25. } else {
  26. textobj.value = '';
  27. }
  28. }
  29. function resizeEditor(change) {
  30. var editorbox = bbinsert ? editbox : textobj;
  31. var newheight = parseInt(editorbox.style.height, 10) + change;
  32. if(newheight >= 100) {
  33. editorbox.style.height = newheight + 'px';
  34. }
  35. }