在django模板中,我有一个单击范围时弹出的模态。

 <div class="modal-body">
     <form action="#">
         <fieldset>
             <legend>Please Select Your Option</legend>
                 <p><label style="font-size:15px;"><input type="checkbox" style="margin-right:5px;" id="selectAll"/>Select All</label></p>
              <div id="options">
                    {% for data in allData %}
   <p><label style="font-size:15px;" for={{data}}><input type="checkbox" style="margin-right:5px;" value={{data}}/>{{option}}</label></p>
             {% endfor %}
        <div>
         </fieldset>
     </form>
</div>


我看到了许多示例,并且知道使用id可以访问每个复选框的value属性。但在这种情况下,复选框的数量是动态的,我真的很困惑。

我想访问标签名称作为值。有什么帮助吗?

编辑:

var allVals = [];
$('#options :checked').each(function() {
       allVals.push($(this).val());
});
console.log(allVals);


我使用此jquery代码获取值,但它没有返回完整的值,就像我在代码中所做的一样(将标签名称放入value属性中)。

例如。如果选项显示:

a,b,c,d


它返回具有[a]的数组。

最佳答案

    <html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>

<script>

    $(document).ready(function(){


        // for delete row
        $('#container').on('click', 'input[type="checkbox"]', function () {
            alert($(this).closest('label').text());
        });

        $('#btnAdd').click(function () {
            iCounter=$('#container p').siblings().length + 1
            $('#container').append('<p><label style="font-size:15px;" for="test1"><input type="checkbox" style="margin-right:5px;" value="test1"/>sample' + iCounter + '</label></p>');

        });



    });
</script>
</head>
<body>
    <button id="btnAdd">Add Data</button>
    <div class="modal-body">
     <form action="#">
         <fieldset>
             <legend>Please Select Your Option</legend>
                 <p><label style="font-size:15px;"><input type="checkbox" style="margin-right:5px;" id="selectAll"/>Select All</label></p>
             <div id="container">

             <p><label style="font-size:15px;" for="test1"><input type="checkbox" style="margin-right:5px;" value="test1"/>sample</label></p>

            </div>
         </fieldset>
     </form>
</div>
</body>
</html>

07-24 09:30