0

私がこれを持っているとしましょう:

alert($('#child_check').html());
            if($('#child_check').html() != "Select..." || $('.funnel_items').val() == "5" || $('.funnel_items_sub').val() != "Select..."){
                return true;
            }else{
                alert("No Sub category selected!");
                return false;
            }

.html の戻り値:

   No available selection for this action.

.html が入力された文字列と等しいかどうかを確認するにはどうすればよいですか?このコードで?

また、codiの文字列比較として.html値を使用することは本当に不可能ですか

ありがとうございました

4

1 に答える 1

1

.html() の結果に別の文字列が「含まれている」かどうかを確認しようとしていると思います。

http://jsfiddle.net/XRWHF/

var haystack = $('#foo').html();
var needle = 'No available selection for this action.';
if (haystack.indexOf(needle) !== -1) { // If needle is inside haystack
    return true;
} else {
    return false;
}
于 2013-03-22T22:37:32.770 に答える