本文實(shí)例為大家分享了jQuery實(shí)現(xiàn)動(dòng)態(tài)添加和刪除input框的具體代碼,供大家參考,具體內(nèi)容如下
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供邯鄲網(wǎng)站建設(shè)、邯鄲做網(wǎng)站、邯鄲網(wǎng)站設(shè)計(jì)、邯鄲網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、邯鄲企業(yè)網(wǎng)站模板建站服務(wù),10年邯鄲做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>選項(xiàng)</title> <script type="text/javascript" src="js/jquery-1.8.3.js"></script> <script> $(function(){ // 添加選項(xiàng) $("#opbtn").click(function(){ if($("#opts>li").size() < 6){// 最多添加6個(gè)選項(xiàng) $("#opts").append("<li><input /></li>"); }else{// 提示選項(xiàng)個(gè)數(shù)已經(jīng)達(dá)到大 $("#optips").html("選項(xiàng)個(gè)數(shù)已經(jīng)達(dá)到大,不能再添加!"); $("#optips").css({"color":"red"}); } }); // 刪除選項(xiàng) $("#delbtn").click(function(){ if($("#opts>li").size() <= 0){ $("#optips").html("已經(jīng)沒有選項(xiàng)可以刪除了!"); $("#optips").css({"color":"red"}); } else{ // 刪除選項(xiàng),每次刪除最后一個(gè) $("#opts>li").last().remove(); } }); }); </script> <style> *{ margin: 0px; padding: 0px; } #dv{ width: 100px; height: 100px; background-color: yellow; margin: 0px auto 0px; } </style> </head> <body> <div > <input id="opbtn" type="button" value="添加選項(xiàng)"/> <input id="delbtn" type="button" value="刪除選項(xiàng)"/> <input id="wrapbtn" type="button" value="包圍DIV"/> <ol id="opts" type="A"></ol> <!-- 提示語 --> <span id="optips"></span> </div> </body> </html>
新聞名稱:jQuery實(shí)現(xiàn)動(dòng)態(tài)添加和刪除input框代碼實(shí)例-創(chuàng)新互聯(lián)
文章路徑:http://jinyejixie.com/article24/dedpce.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、網(wǎng)站制作、靜態(tài)網(wǎng)站、動(dòng)態(tài)網(wǎng)站、域名注冊(cè)、面包屑導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容