在提交之前检查textarea是否有任何字符(并忽略空格)

时间:2010-08-13 06:16:32

标签: jquery validation textarea whitespace

如果textarea在提交之前是空的,我可以使用jQuery进行简单的检查.val() == ""。它有效,但它会占用空白。

如何在此检查中忽略空格?

// Post guestbook; Check on frontend before submitting
function postGuestbook() {
    if ($('.post-form textarea').val() == "") 
    {
        $('div.message.error').show();
        return false
    }
    else {
        $('.post-form input[type="submit"]').attr('disabled', 'disabled');
        return true;
    }
}

1 个答案:

答案 0 :(得分:6)

...
if ($.trim($('.post-form textarea').val()) == "") {
    ... 

http://api.jquery.com/jQuery.trim/