douzhong5902 2013-03-08 01:22
浏览 29

如何访问和更改动态创建的多个html表单元素?

I have a form with many input fields. I can't access and make changes on dynamically duplicated forms. I will show you just a portion of the fom to explain my problem.

<div>
  <input class="add check" type="checkbox" name="add"> <label for="check">Add</label>
</div>

<select disabled="true" class="classname">
    <option value="value1">Value1</option>
    <option value="value2">Value2</option>
</select>

<input name="percentage" type="text" class="percent medium" disabled="true" />                                        
<input name="amount" type="text" class="amount medium"  disabled="true" />
<div class="total medium process_price"></div>

This is the part of the form. When ADD checkbox is checked drop down is activated and when an option is selected, option value is retrieved from database and displayed on Total div. Now, I can manipulate Total by entering either amount or percentage field. I am able to duplicate this form with jQuery but I would like the duplicated form independently work from the original. How do I do that? This is what I have so far but the duplicated form is not working independently. Any suggestion? Thanks.

$(".add").live('click',function(e){
    orginize($(e.target));
});

orginize(obj){
 var addCheck = obj.closest('div').find('input:checkbox');
 if(addCheck.is(':checked')){
   // Do stuff
 }
}
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
    • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
    • ¥15 MATLAB中streamslice问题
    • ¥15 如何在炒股软件中,爬到我想看的日k线
    • ¥15 seatunnel 怎么配置Elasticsearch
    • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
    • ¥15 (标签-MATLAB|关键词-多址)
    • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
    • ¥500 52810做蓝牙接受端
    • ¥15 基于PLC的三轴机械手程序