我在asp.net C#中使用Master和Content页面。在我的webapplication中我正在使用bootstrap ..我得到的错误是 Uncaught TypeError:$(...)。datepicker不是函数< / strong>
如果我尝试解决上述错误,主页面中的下拉列表会产生错误,因为未捕获的TypeError:$(...)。dropdown不是函数
Uncaught TypeError: $(...).datepicker is not a function
(anonymous function) @ com_mst_CompanyRegistrationAdd.aspx:111
i @ jquery.min.js:2
fireWith @ jquery.min.js:2
ready @ jquery.min.js:2
K @ jquery.min.js:2
在母版页中:
<script src="../Scripts/jquery-1.12.4.js"></script>
<script src="../Scripts/jquery-1.12.4.min.js"></script>
<script src="../Scripts/bootstrap.js"></script>
<script src="../Scripts/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script>
$(document).ready(function() {
$('dropdown-toggle').dropdown()
});
</script>
在内容页面中:
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(function () {
$("#txtEstablishedDate").datepicker({
dateFormat: "dd/mm/yy",
changeMonth: true,
changeYear: true,
});
});
</script>
<script type="text/javascript">
$(function () {
$("#txtRCDate").datepicker({
dateFormat: "dd/mm/yy",
changeMonth: true,
changeYear: true
});
});
</script>
<script type="text/javascript">
$(function () {
$("#txtCstDate").datepicker({
dateFormat: "dd/mm/yy",
changeMonth: true,
changeYear: true
});
});
</script>
请帮我解决错误..
答案 0 :(得分:0)
未捕获类型错误。我认为您正在使用Jquery UI小部件。 您需要粘贴下面的脚本并链接下面的URL。
<link rel="stylesheet" href="//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>
这将解决问题