ASP+SQL在线动态网站制作系统,支持下载
源代码在线查看: private.js
// 去空格,left,right,all可选
function BaseTrim(str){
lIdx=0;rIdx=str.length;
if (BaseTrim.arguments.length==2)
act=BaseTrim.arguments[1].toLowerCase()
else
act="all"
for(var i=0;i thelStr=str.substring(lIdx,lIdx+1)
therStr=str.substring(rIdx,rIdx-1)
if ((act=="all" || act=="left") && thelStr==" "){
lIdx++
}
if ((act=="all" || act=="right") && therStr==" "){
rIdx--
}
}
str=str.slice(lIdx,rIdx)
return str
}
// 基本信息提示,得到焦点并选定
function BaseAlert(theText,notice){
alert(notice);
theText.focus();
theText.select();
return false;
}