datepicker()在我的页面中使用jquery无法正常工作

时间:2015-03-30 11:21:29

标签: javascript jquery datepicker

嗨,在下面的代码中,datepicker()无法使用jquery.But单独工作正常。

将代码添加到我的页面后,它不起作用,这是我的示例代码。

HTML

<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <title>Admission Form</title>

  <link rel="stylesheet" href="css/admissionform.css">
  <!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->

<link href="css/bootstrap.css" rel='stylesheet' type='text/css' />

<script src="js/jquery.min.js"></script>

<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />

<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="" />


<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
 <link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="http://code.jquery.com/jquery-1.10.2.js"></script>
  <script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
    <script>
  jQuery(document).ready(function() {
  jQuery('.date-picker').datepicker();
});
  </script>   
        <link rel="stylesheet" href="css/flexslider.css">
</head>
<body>
 <p>Date: <input type="text" id="datepicker"></p>
</body>

2 个答案:

答案 0 :(得分:2)

你有多次调用jQuery:

<script src="js/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>

仅保留调用(在使用jQuery之前)。还要检查DevTools控制台是否有其他错误(如果有的话)。

此外,您有<input id="datepicker">,但为类选择器.date-picker

调用datepicker

答案 1 :(得分:1)

输入元素使用ID datepicker但您已使用类选择器创建datepicker

<input type="text" id="datepicker">
jQuery('.date-picker').datepicker();

使用id选择器

jQuery('#datepicker').datepicker();

检查控制台是否有错误

您使用了2个jquery文件,这些文件也可能会导致一些问题