0

我会尽量具体一点。我有一个下拉菜单[选择标签],用户可以选择 5 个选项;即从 1 到 5 的数字。现在根据所选选项,我想显示一个新表单,其输入标签数量与所选选项相同

因此,如果用户从下拉菜单中选择 3,则底部会出现一个子表,显示三个输入标签。代码是:

<select id="formName9" name="blockUnits">
 <option selected="selected" value="1">1</option>
 <option value="2">2</option>
 <option value="3">3</option>
 <option value="4">4</option>
 <option value="5">5</option>
</select>
4

6 回答 6

7

您将使用on change事件侦听器:

$('select#formName9').on('change', function() {
    /* Remove the existing input container, if it exists. */
    $('form#container').remove();

    /* Get the selected value and create the new container. */
    var val = $(this).val()
        $container = $('<form id="container"></form>');

    /* Loop through creating input elements based on value. */
    for(i=0;i<val;i++)
    {
        /* Create the new input element. */
        var $input = $('<input type="text"/>');

        /* Append this input element to the container. */
        $input.appendTo($container);
    }

    /* Add container to the page. */
    $container.insertAfter($(this));
})

JSFiddle 示例

然后,您可以在此基础上扩展以添加基于初始selected选项的默认输入:

扩展的 JSFiddle

于 2013-03-20T08:43:10.367 回答
7

我支持詹姆斯唐纳利的回答。如果您希望它是纯 java 脚本,您可以使用此替代方法。

HTML

 <select id="formName9" name="blockUnits" onchange="addInput()">
     <option selected="selected" value="1" >1</option>
     <option value="2">2</option>
     <option value="3">3</option>
     <option value="4">4</option>
     <option value="5">5</option>
    </select>
    <form>
    <div id="newAdd"> </div>.
    </form>

JAVASCRIPT

function addElement() {
    var element = document.createElement("input"); //creating input
    element.setAttribute("value", "");//setting its value
    element.setAttribute("name", "newInput");//naming the input
    var foo = document.getElementById("newAdd");
    foo.appendChild(element);//appendign the value into the parant div
}
function addInput(){
    document.getElementById("newAdd").innerHTML="";//clearing the div
     var noInp=parseInt(document.getElementById("formName9").value);
        while(noInp>0)
        {
        addElement();
            noInp--;
        }           
    }

这是JSFIDDLE

于 2013-03-20T09:13:27.087 回答
0
$('select#formName9').on('change', function() {
var ddVal=$(this).val();
for(i=0;i<ddVal.length;i++)
{
$("#FORMPOSITION").append("<input type='text' name='ddG"+i+"' id='ddVL"+i+"'>");
}
});

在执行之前考虑引号。

于 2013-03-20T08:44:34.013 回答
0

我尝试过并且工作过。尝试一下:

        $(document).ready(function() {
            $('#formName9').change(function() {
                var number = parseInt($('#formName9').val());
                if(number == 3) {
                    alert('3 HERE');
                }
            });
        });
于 2013-03-20T08:46:02.913 回答
0

这是一个使用 jQuery 和 CSS 的动态示例。我提供了一个有效的 jsFiddle。

这是基本思想,您可以解决此问题并在需要时添加更多输入。

HTML:

<select id="formName9" name="blockUnits">
    <option selected="selected" value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
</select>
<div id="form1" class="hiddenForm form">Form 1</div>
<div id="form2" class="hiddenForm form">Form 2</div>
<div id="form3" class="hiddenForm form">Form 3</div>
<div id="form4" class="hiddenForm form">Form 4</div>
<div id="form5" class="hiddenForm form">Form 5</div>

jQuery:

$("#form1").show()
$("#formName9").change(function () {
    var form = "#form" + $(this).val();
    $(form).siblings(".hiddenForm").hide()
    $(form).show();
});

CSS:

.form {
    padding: 10px;
    border: 1px dotted #000;
    margin: 5px;
}
.hiddenForm {
    display: none;
}
于 2013-03-20T08:53:00.323 回答
-1

您可以使用Ajax调用,并将响应添加到DOM,或者使用JS 直接添加DOM。

对于直接 DOM,somethink 像(使用 jQuery):

$('#formName9').on('change', function() {
   var selected = $(this).val();
   $('#aDomElement').empty();
   for (var i=1; i<=selected; i++) {
       $('#aDomElement').append(
           $('<div id="'+i+'">').html(
                   $('<input>').attr('name', 'input'+i).attr('type', 'text')
           )
        );
   }
});

aDomElement现有 HTML 元素的 ID在哪里。

于 2013-03-20T08:40:44.347 回答