创造一个无限可扩展的形式?

时间:2013-11-13 15:03:14

标签: javascript php jquery html forms

我有一个表单需要能够在表单中乘以特定的行,然后复制整个表单。在我正在处理的概念示例中,有一个Name字段和一个URL字段。我需要1个名称字段,最多3个URL字段,但是我需要复制整个分组最多3次,并通过POST提交,但数字配对可能不同。
例如,第一组可以有1个名称,3个URL,第二个组有1个URL,第三个组有3个URL。我能够将URL字段的数量或整个表单相乘,但如果我有2个URL字段,则表单的所有倍数都有2个URL字段,然后我无法以任何形式更改它。

查看JSFiddle比在此处发布代码要容易得多,因为您可以看到我的代码以及它的行为方式。 http://jsfiddle.net/wingdom/yCTpf/3/

感谢您的帮助!

HTML:

<form id="myForm">
<div id="O1" class="clonedInput5">
    <fieldset>
        <input type="hidden" name="Ocount" id="Ocount" value="1" />
        <legend>Outbound App - Required</legend>
        <div>
            <label>Name:</label>
            <input type="text" name="oname">
        </div>
        <div id="ourl1" style="margin-bottom:4px;" class="clonedInput1">URL:
            <input type="text" name="ourl1" id="ourl1" />
        </div>
        <div>
            <input type="button" id="ourlAdd" value="Add URL" />
            <input type="button" id="ourlDel" value="Remove URL" />
        </div>
        <input type="hidden" name="urlo" id="urlo" value="1" />
    </fieldset>
</div>
<input type="button" id="OAdd" value="Add Outbound" />
<input type="button" id="ODel" value="Rm Outbound" />

使用Javascript:

$('#ourlAdd').click(function () {
var num = $('.clonedInput1').length; // how many "duplicatable" input fields we currently have
var newNum = new Number(num + 1); // the numeric ID of the new input field being added

// create the new element via clone(), and manipulate it's ID using newNum value
var newElem = $('#ourl' + num).clone().attr('id', 'ourl' + newNum);

// manipulate the name/id values of the input inside the new element
newElem.children(':first').attr('id', 'ourl' + newNum).attr('name', 'ourl' + newNum);

// insert the new element after the last "duplicatable" input field
$('#ourl' + num).after(newElem);

document.getElementById("urlo").value = newNum;


// enable the "remove" button
$('#ourlDel').attr('disabled', '');

// business rule: you can only add 5 names
if (newNum == 3) $('#ourlAdd').attr('disabled', 'disabled');
});

$('#ourlDel').click(function () {
var num = $('.clonedInput1').length; // how many "duplicatable" input fields we currently have
$('#ourl' + num).remove(); // remove the last element

document.getElementById("urlo").value = num - 1;

// enable the "add" button
$('#ourlAdd').attr('disabled', '');

// if only one element remains, disable the "remove" button
if (num - 1 == 1) $('#ourlDel').attr('disabled', 'disabled');
});

$('#ourlDel').attr('disabled', 'disabled');

$('#OAdd').click(function () {
var num = $('.clonedInput5').length; // how many "duplicatable" input fields we currently have
var newNum = new Number(num + 1); // the numeric ID of the new input field being added

// create the new element via clone(), and manipulate it's ID using newNum value
var newElem = $('#O' + num).clone().attr('id', 'O' + newNum);



// insert the new element after the last "duplicatable" input field
$('#O' + num).after(newElem);

document.getElementById("Ocount").value = newNum;


// enable the "remove" button
$('#ODel').attr('disabled', '');

// business rule: you can only add 5 names
if (newNum == 3) $('#OAdd').attr('disabled', 'disabled');
});

$('#ODel').click(function () {
var num = $('.clonedInput5').length; // how many "duplicatable" input fields we currently have
$('#O' + num).remove(); // remove the last element

document.getElementById("Ocount").value = num - 1;

// enable the "add" button
$('#OAdd').attr('disabled', '');

// if only one element remains, disable the "remove" button
if (num - 1 == 1) $('#ODel').attr('disabled', 'disabled');
});

$('#ODel').attr('disabled', 'disabled');

1 个答案:

答案 0 :(得分:1)

这样做的一种方法是最初存储原始表单的副本,然后使用该副本创建其他表单。

var $originalForm = $("#originalForm").clone();

现在,只要你需要创建一个新表单,你就可以:$originalForm.clone()然后遍历表单修复ID中的元素(假设你没有放弃使用id。)

虽然,我个人会以完全不同的方式这样做。

var formTemplate = "form template here, or get it from a <script type=\"text/template\"></text>";

function ExtendableForm() {
    this.$form = $(formTemplate).appendTo("body");
    this.bindEvents();
    return this.$form;
}
$.extend( ExtendableForm.prototype, {
    addAnotherURL: function(){
        this.$form.find(".wrap-url").append($(formTemplate).find(".wrap-url").children());
    },
    addAnotherName: function(){
        this.$form.find(".wrap-name").append($(formTemplate).find(".wrap-url").children());
    },
    bindEvents: function(){
        this.$form
            .on("click", ".add-url", $.proxy(addAnotherURL,this))
            .on("click", ".add-name", $.proxy(addAnotherName,this));
    }
});



$("#addAnotherForm").click(function(){
    $("#form-container").append(new ExtendableForm());
}).click();

它可能会有点干燥,但这是基本的想法。没有任何一种形式知道或需要关心任何其他形式。