node.js - DatePicker jquery UI无法正常工作

时间:2012-07-08 07:00:16

标签: jquery jquery-ui node.js

我正在尝试在我的node.js项目中使用JQuery UI datepicker,但它不起作用。

我的layout.ejs和index.ejs文件的简化版本。

layout.ejs

<head>
<script type="text/javascript" src="../1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="../1.8.11/jquery-ui.min.js"></script>
<link rel="stylesheet" href="../jquery-ui.css" type="text/css" media="all" />
</head>
<body>
      <script>
         $(function() {
            $( "#datepick" ).datepicker();
        });
     </script>
</body>
</html>

index.ejs

<aside class="widget">
    <p>Date: <input type="text" id="datepick"></p>
</aside>

2 个答案:

答案 0 :(得分:2)

工作演示 http://jsfiddle.net/MfkAE/

再次检查您的脚本来源,更好将其更改为谷歌链接,如下面的mentioend;休息你可以看到它在使用riight源的演示中都能正常工作。

希望它有所帮助! :)

<强>脚本

 <link rel="stylesheet" type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/smoothness/jquery-ui.css" media="all">

  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>

<强>代码

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

答案 1 :(得分:1)

以下代码可以在带有nodejs / express的EJS模板引擎中运行 Layout.ejs

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/smoothness/jquery-ui.css" media="all">
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
    <script>
    $(function() {
        $('#datepick').datepicker();
    });
    </script>

</head>  
<body>
</body>
</html>

Index.ejs

<aside class="widget">
<p>Date: <input type="text" id="datepick"></p>