css effect on daterangepicker not working

我与影子孤独终老i 提交于 2019-12-12 03:57:06

问题


I am using daterangepicker on my website which is working locally but not on the server.

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>

It's working locally, but not on the server. This is the output on the local server: enter image description here And this is the output on the server: enter image description here

来源:https://stackoverflow.com/questions/42659886/css-effect-on-daterangepicker-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!