0

javascript で選択した Option id を取得したいのですが、

personalData['childname']=window.frames[0].document.getElementById('student_name').value;

HTML::

<tr>
<td align="right" width="40%"><label for="student" class="student" data-icon="">Select Name</label></td>
<td><select class="field" id="student_name"  required="required"  >

</select></td>
</tr>

** 動的に値を読み込む **

この行は私に値を与えます、どうすれば選択したオプションのIDを取得できますか???

4

4 に答える 4

1

未検証

var $select = $('#student_name', window.frames[0].document);
var id = $select.find('[value="' + $select.val() + '"]').attr('id');

また

var id = $('#student_name option:selected', window.frames[0].document).attr('id');
于 2013-11-01T10:28:03.143 に答える
0

これを試して:

personalData['childname']=window.frames[0].document.getElementById('student_name').getAttribute("id");
于 2013-11-01T10:29:12.750 に答える