<span>This Changes as You Type in Input1</span><br>
<input type="text" id="input1"><br><br>
<span>This Changes as You Type Type in Input2</span><br>
<input type="text" id="input2"><br><br>
ユーザーが入力テキスト内に入力すると、jquery が上記のスパン タグを検索し、ユーザーが入力しているときに動的に変更する必要があります。キープレスを使用すると、最後に押されたキーが除外されるため、この例では変更を使用しています..
//my jquery attempt that's not working
$('#input1').change(function() {
$(this).closest('span').html($(this).val()
});
すべてのIDに対してこの変更機能を繰り返すのではなく、クラスでこれを効率的にコーディングできるかどうかを知りたいです。たとえば、クラスにすることができれば、その上の最も近いタグのテキストが変更されますか?
//Like this?
$('.inputclass').change(function() {
$(this).closest('span').html($(this).val()
});