在现有文档

时间:2016-04-08 11:15:36

标签: jquery jquery-ui

我想实现datepicker。当我在空文档中使用代码时,它可以工作,但是当我尝试在现有文档中实现时,它不起作用。

空文档中的代码:

<html lang="en">
<head>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

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

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


</body>
</html>

我将链接和脚本放在文档的头部并在正文中输入字段。但是当我点击输入字段时没有任何反应。有什么想法吗?

也许我应该在标题中的脚本声明中更改某些内容?

提前感谢。

0 个答案:

没有答案