国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

jQuery實現(xiàn)動態(tài)添加、刪除按鈕及input輸入框的方法

2019-11-19 16:42:46
字體:
供稿:網(wǎng)友

本文實例講述了jQuery實現(xiàn)動態(tài)添加、刪除按鈕及input輸入框的方法。分享給大家供大家參考,具體如下:

<html><head><meta charset="utf-8"><title>動態(tài)創(chuàng)建按鈕</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>

運行效果圖如下:

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery常見事件用法與技巧總結(jié)》、《jQuery常用插件及用法總結(jié)》、《jQuery操作json數(shù)據(jù)技巧匯總》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery拖拽特效與技巧總結(jié)》、《jQuery表格(table)操作技巧匯總》、《jQuery常見經(jīng)典特效匯總》、《jQuery動畫與特效用法總結(jié)》及《jquery選擇器用法總結(jié)

希望本文所述對大家jQuery程序設(shè)計有所幫助。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 保靖县| 宜兴市| 临洮县| 泸州市| 金昌市| 车致| 南昌县| 长顺县| 明星| 阿拉善右旗| 屏南县| 嘉鱼县| 平潭县| 翁牛特旗| 北川| 涟源市| 年辖:市辖区| 明水县| 吉安市| 大埔县| 弥渡县| 海原县| 汉沽区| 宁都县| 台安县| 江都市| 磴口县| 隆尧县| 南华县| 简阳市| 台前县| 贡山| 德昌县| 翁牛特旗| 金堂县| 墨脱县| 大悟县| 万载县| 阿拉善盟| 长丰县| 东丽区|