首页 > 语言 > JavaScript > 正文

jQuery实现动态添加、删除按钮及input输入框的方法

2024-05-06 15:46:05
字体:
来源:转载
供稿:网友

我们在开发项目的时候都需要使用jQuery进行开发,那么jQuery要如何实现动态添加、删除按钮及input输入框的方法呢?今天就让错新技术频道小编和大家分享吧!

<html><head><meta charset="utf-8"><title>动态创建按钮</title><script src='http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js'></script></head><body><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" id="AddMoreFileBox" class="btn btn-info">添加更多的input输入框</a></span></p><div id="InputsWrapper"><div><input type="text" name="mytext[]" id="field_1" value="Text 1"/><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="removeclass"><input type='button' value='删除'></a></div></div><script>$(document).ready(function() {var MaxInputs    = 8; //maximum input boxes allowedvar InputsWrapper  = $("#InputsWrapper"); //Input boxes wrapper IDvar AddButton    = $("#AddMoreFileBox"); //Add button IDvar x = InputsWrapper.length; //initlal text box countvar FieldCount=1; //to keep track of text box added$(AddButton).click(function (e) //on add input button click{    if(x <= MaxInputs) //max input box allowed    {      FieldCount++; //text box added increment      //add input box      $(InputsWrapper).append('<div><input type="text" name="mytext[]" id="field_'+ FieldCount +'" value="Text '+ FieldCount +'"/><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" class="removeclass"><input type="button" value="删除"></a></div>');      x++; //text box increment    }return false;});$("body").on("click",".removeclass", function(e){ //user click on remove text    if( x > 1 ) {        $(this).parent('div').remove(); //remove text box        x--; //decrement textbox    }return false;})});</script></body></html>

运行效果图如下:

以上就是错新技术频道小编介绍的关于jQuery实现动态添加、删除按钮及input输入框的方法,该介绍完成之后,就能进入项目体现效果,享受编程的乐趣了。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选