html動(dòng)態(tài)添加input
公司主營業(yè)務(wù):成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè)、移動(dòng)網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)建站是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)建站推出孝義免費(fèi)做網(wǎng)站回饋大家。
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK" />
- <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
- <title>html動(dòng)態(tài)添加input</title>
- <style type="text/css">
- body { font:12px/1.5 tahoma, arial, \5b8b\4f53, sans-serif; }
- ul { margin:0; padding:0; list-style:none; }
- a { margin-left:5px; color:#07F; text-decoration:none; }
- a:hover { text-decoration:underline; }
- input { border:1px solid #ccc; margin:2px; }
- table { border-collapse:collapse; border-spacing:0; }
- td { margin:0; padding:10px; border:1px solid #ccc; }
- </style>
- <script type="text/javascript" src="jquery.min.js"></script>
- <script type="text/javascript">
- $(function(){
- $("#demo1").easyinsert();//最簡單的應(yīng)用
- $("#demo2").easyinsert({
- name: ["demo2", "demo2"],//可以同時(shí)添加兩個(gè)(或更多),name值相同也必須分開設(shè)置,name數(shù)組的長度就是每組input的個(gè)數(shù)。type、value、maxlength、className四種屬性,若同組組員的設(shè)置一樣,可以只設(shè)置一次。
- value: ["默認(rèn)值2-1", "默認(rèn)值2-2"],//可以給同組input分別設(shè)置默認(rèn)值
- maxlength: 15,//每組input的maxlength都一樣,無需使用數(shù)組
- className: ["demo2_class1", "demo2_class2"],//不用我解釋了吧
- toplimit: 5,//可以添加組數(shù)上限(默認(rèn)是0,表示無上限),它是總管,so,name相當(dāng)于小組組長
- initValue: [//初始化的時(shí)候,各input的value就是歸它管,必須是數(shù)組
- ["初始值2-1", "初始值2-2"]
- ]
- });
- $("#demo3").easyinsert({
- name: "demo3",
- toplimit: 2,
- initValue: [
- ["初始值3-1"],//必須是數(shù)組,就算每組只有一個(gè)input
- ["初始值3-2"],
- ["初始值3-3"]//小三兒,別想蒙混過關(guān),總管只允許添加兩組
- ]
- });
- $("#demo4").easyinsert({
- name: ["demo4", "demo4", "demo4", "demo4", "demo4", "demo4"],
- type: ["text", "radio", "password", "checkbox", "file", "button"],
- value: ["我是text", "我是radio", "我是password", "我是checkbox", "", "我是button"]
- });
- $("#demo5").easyinsert({//type新增custom和select
- name: ["demo5", "demo5", "demo5", "demo5"],
- type: ["custom", "text", "custom", "select"],
- value: ["<strong style=\"color:#ff7b0e;\">科目:</strong>", "", "<strong style=\"color:#ff7b0e;\">類型:</strong>", { '理論': '1', '技能': '2', '上機(jī)': '3' }],
- initValue: [
- ["<strong style=\"color:#ff7b0e;\">科目:</strong>", "初始值5-1", "<strong style=\"color:#ff7b0e;\">類型:</strong>", { '理論a': '1', '技能a': '2', '上機(jī)a': '3' }],
- ["<strong style=\"color:#ff7b0e;\">科目:</strong>", "初始值5-1", "<strong style=\"color:#ff7b0e;\">類型:</strong>", { '理論b': '1', '技能b': '2', '上機(jī)b': '3' }]
- ]
- });
- });
- /**
- * EasyInsert 4.0
- * http://IlikejQuery.com/EasyInsert
- *
- * @Creator wo_is神仙 <jsw0528@MrZhang.net>
- * @Depend jQuery 1.4+
- **/
- ;(function($){
- $.fn.extend({
- "easyinsert": function(o){
- o = $.extend({
- //觸發(fā)器
- clicker: null,//根據(jù)class(或id)選擇,默認(rèn).next()獲取
- //父標(biāo)簽
- wrap: "li",
- name: "i-text",
- type: "text",
- value: "",
- maxlength: 20,
- className: "i-text",
- //新增上限值
- toplimit: 0,//0表示不限制
- //初始化值,二維數(shù)組
- initValue: null//用于修改某資料時(shí)顯示已有的數(shù)據(jù)
- }, o || {});
- var oo = {
- remove: "<a href=\"#nogo\" class=\"remove\">移除</a>",
- error1: "參數(shù)配置錯(cuò)誤,數(shù)組的長度不一致,請(qǐng)檢查。",
- error2: "參數(shù)配置錯(cuò)誤,每組初始化值都必須是數(shù)組,請(qǐng)檢查。"
- }
- //容器
- var $container = $(this);
- var allowed = true;
- //把屬性拼成數(shù)組(這步不知道是否可以優(yōu)化?)
- var arrCfg = new Array(o.name, o.type, o.value, o.maxlength, o.className);
- //arr ==> [name, type, value, maxlength, className]
- var arr = new Array();
- $.each(arrCfg, function(i, n){
- if ( $.isArray(n) ) {
- arr[i] = n;
- } else {
- arr[i] = new Array();
- if ( i === 0 ) {
- arr[0].push(n);
- }else{
- //補(bǔ)全各屬性數(shù)組(根據(jù)name數(shù)組長度)
- $.each(arr[0], function() {
- arr[i].push(n);
- });
- }
- }
- //判斷各屬性數(shù)組的長度是否一致
- if ( arr[i].length !== arr[0].length ) {
- allowed = false;
- $container.text(oo.error1);
- }
- });
- if ( allowed ) {
- //獲取觸發(fā)器
- var $Clicker = !o.clicker ? $container.next() : $(o.clicker);
- $Clicker.bind("click", function() {
- //未添加前的組數(shù)
- var len = $container.children(o.wrap).length;
- //定義一個(gè)變量,判斷是否已經(jīng)達(dá)到上限
- var isMax = o.toplimit === 0 ? false : (len < o.toplimit ? false : true);
- if ( !isMax ) {//沒有達(dá)到上限才允許添加
- var $Item = $("<"+ o.wrap +">").appendTo( $container );
- $.each(arr[0], function(i) {
- switch ( arr[1][i] ) {
- case "select"://下拉框
- var option = "";
- $.each(arr[2][i], function(i, n) {
- option += "<option value='"+ n +"'>"+ i +"</option>";
- });
- $("<select>", {
- name: arr[0][i],
- className: arr[4][i]
- }).append( option ).appendTo( $Item );
- break;
- case "custom"://自定義內(nèi)容,支持html
- $Item.append( arr[2][i] );
- break;
- default://默認(rèn)是input
- $("<input>", {//jQuery1.4新增方法
- name: arr[0][i],
- type: arr[1][i],
- value: arr[2][i],
- maxlength: arr[3][i],
- className: arr[4][i]
- }).appendTo( $Item );
- }
- });
- $Item = $container.children(o.wrap);
- //新組數(shù)
- len = $Item.length;
- if ( len > 1 ) {
- $Item.last().append(oo.remove);
- if ( len === 2 ) {//超過一組時(shí),為第一組添加“移除”按鈕
- $Item.first().append(oo.remove);
- }
- }
- $Item.find(".remove").click(function(){
- //移除本組
- $(this).parent().remove();
- //統(tǒng)計(jì)剩下的組數(shù)
- len = $container.children(o.wrap).length;
- if ( len === 1 ) {//只剩一個(gè)的時(shí)候,把“移除”按鈕干掉
- $container.find(".remove").remove();
- }
- //取消“移除”按鈕的默認(rèn)動(dòng)作
- return false;
- });
- }
- //取消觸發(fā)器的默認(rèn)動(dòng)作
- return false;
- });
- //初始化
- if ( $.isArray(o.initValue) ) {//判斷初始值是否是數(shù)組(必需的)
- $.each(o.initValue, function(i, n) {
- if ( !$.isArray(n) ) {
- $container.empty().text(oo.error2);
- return false;
- }else{
- if ( n.length !== arr[0].length ) {
- $container.empty().text(oo.error1);
- return false;
- }
- }
- var arrValue = new Array();
- //初始值替換默認(rèn)值
- $.each(n, function(j, m) {
- arrValue[j] = arr[2][j]
- arr[2][j] = m;
- });
- $Clicker.click();
- //默認(rèn)值替換初始值
- $.each(arrValue, function(j, m) {
- arr[2][j] = m;
- });
- //上面這種[移形換位法]不知道效率怎么樣,我想不出別的更好的方法
- });
- }else{
- $Clicker.click();
- }
- }
- }
- });
- })(jQuery);
- </script>
- </head>
- <body>
- <table width="90%" align="center">
- <tr>
- <td width="10%" align="right"><strong>Demo1</strong></td>
- <td width="90%">
- <ul id="demo1"></ul>
- <a href="#">+ 添加</a>
- </td>
- </tr>
- <tr>
- <td align="right"><strong>Demo2</strong></td>
- <td>
- <ul id="demo2"></ul>
- <a href="#">+ 添加(最多5項(xiàng))</a>
- </td>
- </tr>
- <tr>
- <td align="right"><strong>Demo3</strong></td>
- <td>
- <ul id="demo3"></ul>
- <a href="#">+ 添加(最多2項(xiàng))</a>
- </td>
- </tr>
- <tr>
- <td align="right"><strong>Demo4</strong></td>
- <td>
- <ul id="demo4"></ul>
- <a href="#">+ 添加</a>
- </td>
- </tr>
- <tr>
- <td align="right"><strong>Demo5</strong> <sup style="color:#F00;">NEW</sup></td>
- <td>
- <ul id="demo5"></ul>
- <a href="#">+ 添加</a>
- </td>
- </tr>
- </table>
- </body>
- </html>
下載地址:
http://down.51cto.com/data/648996
名稱欄目:html動(dòng)態(tài)添加input
網(wǎng)頁路徑:http://jinyejixie.com/article6/jjiiig.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、網(wǎng)站內(nèi)鏈、網(wǎng)站制作、搜索引擎優(yōu)化、品牌網(wǎng)站設(shè)計(jì)、網(wǎng)頁設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)