关于全角半角空格的控制


String.prototype.trim = function()
{
//用来判断全角与半角空格
return this.replace(/(^[\s ]*)|([\s ]*$)/g,"");
// 用正则表达式将前后空格
// 用空字符串替代。
//return this.replace(/(^\s*)|(\s*$)/g, "");
}

function f_submit(){
if (document.all.commentContent.value.trim() == "" || document.all.commentContent.value == "请填写意见内容...") {
alert("请填写意见内容...");
return false;
}
}

你可能感兴趣的:(JSP)