javascript去除首尾空白字符

if ( twocode.replace(/^\s+|\s+$/g,"")=="" )
        {
             alert("二维码不能为空");
            document.getElementById("twocode").focus();
            return false;
        }

 

posted @ 2013-11-15 17:44  haiwei.sun  阅读(302)  评论(0编辑  收藏  举报
返回顶部