0
#question_titleという入力があります。私はぼかしイベントでifステートメントを実行したい。長さをチェックしようとすると、定義されていません。 「これ」がここではうまくいかない理由は何ですか?上のそのようなプロパティ(length
)がないようになぜ「this」は未定義ですか?
JS
$('#question_title').on('blur', function(){
console.log('this.length = ' + this.length);
if (this.length > 1) {
// do something fabulous
}
});
HTML
<div class="form-group question-title-wrap">
<label for="question_title">What is your question?</label>
<input type="text" class="form-control" id="question_title">
</div>
'$(this).val()。length'はこれを行うjQueryの方法です。 – tadman
それは:)答えとして追加してください。 Tx –