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

SCSI/ASPI

开发平台:

Others

  1. function InsertHTML(content)
  2. {
  3.         if(content.indexOf('.jpeg')>0||content.indexOf('.jpg')>0||content.indexOf('.gif')>0||content.indexOf('.png')>0)
  4.         {
  5.             content = "<img src=""+content+"" border='0' /><br />rn";
  6.         }
  7.         else if(content.indexOf('.swf')>0)
  8.         {
  9.             content = "<embed src=""+content+"" width="100" height="100"  type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" menu="true"></embed>";
  10.         }
  11.         else
  12.         {
  13.             content = "<a href='" + content + "'>" + content + "</a>";
  14.         }
  15.         dntEditor.InsertText( content ) ;
  16. }
  17. function checkBlog()
  18. {
  19.     PrepareSave();
  20.     if(document.getElementById('title').value == "") 
  21.     {
  22.         alert('文章标题不能为空');
  23.         document.getElementById('title').focus();
  24.         return false;
  25.     }
  26.     if(document.getElementById('DataTextarea').value == "")
  27.     {
  28.         alert('文章内容不能为空');
  29.         return false;
  30.     }
  31.     return true;
  32. }
  33. function getposition(obj)
  34. {
  35.     var r = new Array();
  36.     r['x'] = obj.offsetLeft;
  37.     r['y'] = obj.offsetTop;
  38.     while(obj = obj.offsetParent) 
  39.     {
  40.         r['x'] += obj.offsetLeft;
  41.         if(navigator.appName.indexOf('Explorer') > -1)
  42.         {
  43.             r['y'] += obj.offsetTop;
  44.         }
  45.         else
  46.         {
  47.             r['y'] += obj.offsetTop;
  48.         }
  49.     }
  50.     return r;
  51. }
  52. function hideimage(imgid)
  53. {
  54.     document.getElementById(imgid).style.display = "none";
  55. }
  56. function showimage(imgid)
  57. {
  58.     var p = getposition(document.getElementById("span"+imgid));
  59.     document.getElementById(imgid).style.display = 'block';
  60.     document.getElementById(imgid).style.left = p['x']+'px';
  61.     document.getElementById(imgid).style.top = (p['y']+20)+'px';
  62.     document.getElementById(imgid).style.display="block";
  63. }