为什么jquery datepicker只在同一个表单中工作一次?

时间:2017-04-21 16:23:26

标签: jquery

我正在设置请求报价,即使用取件日期和退货日期。 jquery datepicker小部件在提取日期工作得很好,但在返回日期不起作用。是否有任何理由说它不能在同一表格中工作两次?我使用的是http://jqueryui.com/datepicker/

上发布的相同代码
<head>
  <link rel="stylesheet" 
   href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
</head>
   .
   .
   .
<body>
    <p>Date: <input type="text" id="datepicker"></p>

    <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
    <script>
        $( function() {
        $( "#datepicker" ).datepicker();
                      } );
     </script>
 </body>

1 个答案:

答案 0 :(得分:0)

使用class而不是id。

  <p>Date: <input type="text" class="datepicker"></p>

不要忘记课程的更改脚本;

<script>
        $( function() {
        $( ".datepicker" ).datepicker();
                      } );
     </script>