私がこれを持っているとしましょう:
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値を使用することは本当に不可能ですか
ありがとうございました