【问题标题】:Datepicker not working in addrow日期选择器在 addrow 中不起作用
【发布时间】:2015-04-21 16:05:36
【问题描述】:
<body>
    <form action="" method="post" id="form">
        <table id="datatable1" width="75%" border="0" cellpadding="2" cellspacing="2" style="border-collapse:collapse">
            <thead>
                <tr align="center" bgcolor="#" style="height:30px;color:#ffffff;">
                    <td nowrap>Sno</td>
                    <td nowrap>Name</td>
                    <td nowrap>Qualification</td>
                    <td nowrap>Date of birth</td>
                </tr>
            </thead>
            <tbody>
                <tr align="center">
                    <td>
                        <input type="text" name="sno[]" value="" id="sno" class="sno" style="margin-top:10px"><br>
                    </td>
                    <td>
                        <input type="text" name="name[]" value="" id="name" placeholder="" readonly>
                    </td>
                    <td>
                        <input type="text" name="qual[]" value="" id="qual" placeholder="" style="margin-top:10px"><br>

                    </td>
                    <td>
                        <input id="datepicker1" name="dob"/>
                    </td>
                    <td>
                        <input type="button" class="addRoww" value="ADD" id="add" name="add">
                        <input type="button" class="delRoww" value="REMOVE" id="remove">
                    </td>
                </tr>
            </tbody>
        </table>        
    </form>
</body>


$(document).ready(function(){
  $("#datepicker").datepicker();
});

【问题讨论】:

    标签: jquery html datepicker


    【解决方案1】:

    表单 ID 是“datepicker1”,但您正在寻找“datepicker”。

    <input id="datepicker1" name="dob"/>
    

    我通常使用 class="datepicker" 所以我有

    $(".datepicker").datepicker();
    

    顺便说一句,我只是在查找 datepicker 插件,我喜欢这个:

    http://eternicode.github.io/bootstrap-datepicker/

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-04-04
      • 2014-11-25
      • 2017-09-29
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多