0
私のページにはいくつかのフィールドが動的に作成されています。その行のIDフィールドをその行の正しい "ntheme"フィールドに揃えるために、次の関数を使用します。フォームフィールドの値を取得
$(document).on('change', 'select', function() {
var checkbox = $(this),
otherInput = $('nrowid' + this.id.replace('ntheme', ''));
console.log(otherInput);
console.log($(this).val());
for(var i=0;i<rows1;i++){
if($(this).val()==themes[i].Themes){
//set value of otherinput to themes[i].ID
}
}
console.log(otherInput.val());
});
otherInputフィールドの値を設定し、console.logを使用してその値を返す方法はありますか?
参照; http://stackoverflow.com/questions/4088467/get-the-value-in-an-input-text-box – Knetic
ちょうどそう設定することはできませんでした:otherInput.val(themes [i] .ID); – cstopher
理由はわかりませんが、動作していません –