对daterangepicker的css效果不起作用

时间:2017-03-07 22:53:23

标签: jquery html css datepicker

我在我的网站上使用daterangepicker,它在本地工作但不在服务器上工作。

HTML

    <html>
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="http://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" id="datepicker"></p>
   </html>

它在本地工作,但不在服务器上工作。这是本地服务器上的输出: enter image description here 这是服务器上的输出: enter image description here

0 个答案:

没有答案