更改包含文件的位置后,datepicker不起作用

时间:2015-10-15 08:09:22

标签: jquery-plugins

我正在尝试使用https://jqueryui.com/datepicker/。我正在使用bootstrap模板开发我的项目的管理模型。如果我更改位置包含文件,我的日期选择器不起作用,如果它包含在jquery文件之前它工作,我的边栏不起作用,但如果它包括在jquery文件后我的边栏工作和日期选择器不起作用。我不明白为什么会发生这种情况。任何帮助将不胜感激。这是我的代码。

GridView

这是我的包含文件。

                                                                                                   

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">     

<link rel="stylesheet"href="http://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>
<link rel="stylesheet" href="/resources/demos/style.css">
**<%@include file="include/include.jsp"%>**
<script>        
$(function() {
$( "#datepicker").datepicker();
});
</script>
</head>

<body class="hold-transition skin-blue sidebar-mini">
<%@include file="include/menu.jsp"%>

<div class="content-wrapper">
<section class="content-header">
<h1>
Dashboard
<small>Control panel</small>
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard">
</i>Home</a></li>
<li class="active">Dashboard</li>
</ol>
</section>
<br>
<div class="control-sidebar-bg"></div>
<section class="content">
<div class="row">
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">Exam Time Table</h3>
</div>
<form action="ExamTimeTable.jsp" method="post">
Exam Date <input type="text" name="date" id="datepicker" placeholder="dd/mm/yyyy">  
</div>
</div>      
</section>
</div>             
</body>
</html> 

0 个答案:

没有答案