添加第二个日期选择器,

时间:2016-10-12 12:50:55

标签: php jquery html datepicker

我需要一些帮助,我将在学校项目中使用这个日期。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Datepicker - Default functionality</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <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>
</head>
<body>
 
<p>Date: <input type="text" name='cout' id="datepicker"></p>
 
 
</body>
</html>

我想创建另一个日期选择器,因为我的项目是酒店预订。入住和退房日期。但在结账时会发生这种情况。

2nd Datepicker

3 个答案:

答案 0 :(得分:1)

您可以使用class代替id来定义日期输入:

即。 :

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>jQuery UI Datepicker - Default functionality</title>
    <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
    <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>
</head>
<body>
    <p>Date: <input type="text" name='cout' class="datepicker" id="start_date"></p>
    <p>Date: <input type="text" name='cout' class="datepicker" id="end_date"></p>
</body>
</html>

希望它有所帮助。

答案 1 :(得分:0)

试试这个:

<p>Date1: <input type="text"  id="datepicker1"></p>
<p>Date2: <input type="text"  id="datepicker2"></p>
 <script>
  $( function() {
    $( "#datepicker1,#datepicker2" ).datepicker();
  } );
  </script>

答案 2 :(得分:0)

我同意Adrien Leber的观点,一旦你拥有多个日期选择器,课程就会变得更容易。我认为你需要使用.each()

$(function() {
    $(".datepicker").each(function(i, val) {
        $(this).datepicker();
    });
});