文章列表
//调用:
var s=" dss ";
s=trim(s);
alert(s)
//调用以下程序
function trim(s){
s=removebeforechar(s);
s=removeafterchar(s);
return s;
}
//去前空格
function removebeforechar(t)
{
if(t.charCodeAt(0)==32 || t.charCodeAt(0)==12288)
{
t=t.slice(1,t.length);
return removebeforec ...
serlet+javascript服务器时间在前台运行,比较实用,可以拷过来直接用,iE测试过了,火狐没测过,因为没用到特殊的东西,应该也能用