2016-09-15 11 views
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を使用してその値を返す方法はありますか?

+1

参照; http://stackoverflow.com/questions/4088467/get-the-value-in-an-input-text-box – Knetic

+0

ちょうどそう設定することはできませんでした:otherInput.val(themes [i] .ID); – cstopher

+0

理由はわかりませんが、動作していません –

答えて

0

// var otherInput2 = $( '#nrowid')。val();

// Set var otherInput2 = $( '#nrowid')。val( 'your value');

console.log(otherInput2);

関連する問題