2016-05-23 5 views
-2

私は2つのドロップダウンオプションnameとvalueを持つ多くのフォームを持っています。そして、選択されるnameのオプションを配列の変数としたいと思います。複数のドロップダウンオプションを使用して特定の行の特定のドロップダウンの値を選択するにはどうすればよいですか?

for (i = 0;i<noOfElements;i++) 
      { 
       var resultHtml = theModule.getHtml("rowformtemplate", {}); 
      //load html of form with fields **name** and **value** as dropdown 
       $(section).append(resultHtml); 
      //append html to a div 
       var optValue = namearray[i]; 
      //from list of optons this value should be selected 
       var form = $(section).find(".row-template"); 
      //find all forms in the section 
       var row= form[form.length-1]; 
      //select latest form 
      //How to select name field "name" of current row and set it to be optvalue which is a variaable something like this. but it selects name field of all form and sets it to optValue 
       $("select[name^='name'] option[value=" + optValue + "]").attr("selected","selected"); 
      } 
+0

をチェック

$(row).find("select[name='name'] option[value='" + optValue + "']").attr("selected","selected"); 

を以下のか試してみてください、いくつかのコードを投稿してください適切な読みやすいパラグラフ。 – seahorsepip

答えて

関連する問題