欢迎来到福编程网,本站提供各种互联网专业知识!

脚本吧 - 幻宇工作室用到js,超强推荐expand.js

发布时间:2006-12-23 作者: 来源:转载
复制代码代码如下:functioncreateDlg(dlgID,title,w,h,isSetPos){varl,i,p,dlgif($(dlgID)!=null)$(dlgID).outerHTML=""$sys.dlgDepth=($sys.dlgDepth||9000)l=""l+=""for(i=0;i
复制代码 代码如下:
functioncreateDlg(dlgID,title,w,h,isSetPos){
varl,i,p,dlg
if($(dlgID)!=null)
$(dlgID).outerHTML=""
$sys.dlgDepth=($sys.dlgDepth||9000)
l=""
l+=""
for(i=0;i<3;i++){
p=i==0?"t":(i==1?"m":"b")
l+=""
l+=""
l+=""
l+=""
l+=""
}
l+=""
l+=""+(title||"")+"
"
l+=""
l+=""
l+="
"
insHtm(document.body,l)
dlg=$(dlgID)
focuDlg(dlg)
dlg.onselectstart=dlg.onmousedown=dlg.ondragstart=dlg.oncontextmenu=function(e){
varee
e=e||event
ee=e.srcElement
if(isSetPos&&e.type=="mousedown"&&isIE)
window.clipboardData.setData("text",($x(ee,this)+e.offsetX)+","+($y(ee,this)+e.offsetY))
if(ee.tagName!="INPUT"&&ee.tagName!="TEXTAREA")
returnfalse
if(ee.readOnly==true)
returnfalse
}
}
functionfocuDlg(dlg){
dlg=$(dlg)
if($sys.currentDlg==dlg)
return
$sys.dlgDepth++
dlg.style.zIndex=$sys.dlgDepth
$sys.currentDlg=dlg
}
functionfmCheck(fm){
varar=[],$caption,$checkRule,$value,sTip,i,j,$n
ar.push(["notnull","$value==''","$caption不能为空!"])
ar.push(["uid","!/^[_a-zA-Z0-9u4E00-u9FA5uF900-uFA2D]{2,16}$/.test($value)","昵称只能由2到16个汉字、英文、数字或下划线组成!"])
ar.push(["pwd","!/^[_a-zA-Z0-9]{6,12}$/.test($value)","密码只能由6到12个英文、数字或下划线组成!"])
ar.push(["cpwd","fm[i].value!=fm[i-1].value","密码确认不一致!"])
ar.push(["eml","!/^([w-.]+)@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.)|(([w-]+.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(]?)$/.test($value)","邮箱格式不正确!"])
ar.push(["max-","$n=/max-(d+)/.exec($checkRule)[1]*1;$value.length>$n","$caption最多只能输入$n个字符!"])
ar.push(["min-","$n=/min-(d+)/.exec($checkRule)[1]*1;$value.length<$n","$caption最少必须输入$n个字符!"])

for(i=0;i$caption=fm[i].getAttribute("caption")
$checkRule=fm[i].getAttribute("checkRule")
if($checkRule==null)
continue
$value=fm[i].value=fm[i].value.trim()
for(j=0;jif(newRegExp("b"+ar[j][0]+"b").test($checkRule)&&eval(ar[j][1])){
sTip=fm[i].getAttribute("tip_"+ar[j][0])
if(sTip==null)
sTip=ar[j][2].replace(/$w+/g,function($0){returneval($0)})
alert(sTip)
oFocu(fm[i])
returnfalse
}
}
}
returntrue
}
functioneditor_paste(w,html){
if(document.all)
w.document.selection.createRange().pasteHTML(html)
else{
varol,i,r=w.document.createRange()
w.document.execCommand("insertimage",false,"http://temp_obj/")
ol=w.document.getElementsByTagName("img")
for(i=0;iif(ol[i].src=="http://temp_obj/"){
r.setStartBefore(ol[i])
ol[i].parentNode.insertBefore(r.createContextualFragment(html),ol[i])
ol[i].parentNode.removeChild(ol[i])
}
}
}
}
functioneditor_getVal(win){
varsContent
try{
sContent=win.document.body.innerHTML
sContent=sContent.replace(/]*>[^>]*>/gi,"")
}
catch(e){
sContent=""
}
sContent=sContent.trim()
returnsContent
}

相关推荐