我在局部视图中有文本框
<input type="text" id="txtStartDate" />
我引用的脚本文件是
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script>
$(document).ready(function () {
$(document).on("focus", "#txtStartDate", function () {
$(this).datepicker();
});
});
我已经尝试过普通视图页面它正在工作,但是当设置为部分视图时它无法正常工作,这是引用jquery datepicker脚本的问题吗?如果问题有任何解决方案,请帮助我。
答案 0 :(得分:0)
在部分视图中渲染控件时,您可以编写
<script>
$(function () {
$("#txtStartDate").datepicker();
});
</script>
<input type="text" id="txtStartDate" />