你如何根据主div读取div中的内部元素值?

时间:2011-12-10 09:05:53

标签: jquery

我想根据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>

1 个答案:

答案 0 :(得分:0)

我现在正在我的iPad上,所以我无法测试代码,但假设你使用的是jquery,它应该是这些行的东西

$('option').each(function() {
   alert( $(this).val() );
});

$('textarea').each(function() {
   alert( $(this).val() );
});