jquery 动态添加,降低input表单的方法

Posted gccbuaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 动态添加,降低input表单的方法相关的知识,希望对你有一定的参考价值。

html代码例如以下

<html>
    <tr><button style="margin-left:10px" class="add_field_button btn">Add</button></tr>  
    <tbody class="input_fields_wrap"></tbody>
</html>


js代码例如以下

<script> 
   var max_fields      = 5; //maximum input boxes allowed
    var wrapper          = $(".input_fields_wrap"); //Fields wrapper
    var add_button    =(".add_field_button"); //Add button ID
    
    var x = 1; //initlal text box count
    $(add_button).click(function(e){ //on add input button click
        e.preventDefault();
        if(x < max_fields){ //max input box allowed
            x++; //text box increment
            $(wrapper).append('<tr style=""><td></td><td><button  class="remove_field btn">Del</button></td></tr>'); //add input box
            }   
    }); 
    
    $(wrapper).on("click",".remove_field", function(e){ //user click on remove text
        e.preventDefault(); $(this).closest('tr').remove(); x--;
    })  
</script>





以上是关于jquery 动态添加,降低input表单的方法的主要内容,如果未能解决你的问题,请参考以下文章

MVC中通过jquery实现图片预览上传,并对文件类型大小进行判断(极简)

如何将动态添加的表单字段发布到mysql数据库

jquery监听动态添加的input的change事件

Vue中动态增加表单项的方法

jquery 动态生成的input添加change事件

jquery 动态生成的input添加change事件