我想根据select and textarea elements
div读取每个div(refer0和refer1)中MainContainer
的每个值。 refer0 and refer1
将动态创建运行时,我不知道它们的ID。但MainContainer div element
是静态的。
<div id="MainContainer">
<div id="Rfer0">
<select id="LstRefer0" >
<option value="52">a</option>
<option value="116">b</option>
</select>
<textarea class="textbox" id="Area0" readonly="readonly" cols="20" rows="2" ></textarea>
</div>
<div id="Rfer1">
<select id="LstRefer1" >
<option value="52">a</option>
<option value="116">b</option>
</select>
<textarea class="textbox" id="Area1" readonly="readonly" cols="20" rows="2" ></textarea>
</div>
</div>
答案 0 :(得分:0)
我现在正在我的iPad上,所以我无法测试代码,但假设你使用的是jquery,它应该是这些行的东西
$('option').each(function() {
alert( $(this).val() );
});
$('textarea').each(function() {
alert( $(this).val() );
});