jQuery正则表达式判断字符串为空白或空

function isBlank(str) {
return (!str || /^\s*$/.test(str));
}

你可能感兴趣的:(jQuery正则表达式判断字符串为空白或空)