我甚至无法获得基本的日历弹出窗口。这是我的脚本和代码:
err.message
位于页面底部的脚本标记中:
Note: I am using jquery 1.10.2 and it is included first.
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/bootstrap-datepicker.js",
"~/Scripts/respond.js"));
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/bootstrap-datepicker3.css",
"~/Content/site.css",
"~/Content/override.css"));
<div class="input-group date">
@Html.TextBox("ForesterDate", today, new { @class = "form-control datepicker" })
<span class="input-group-addon"><i class="glyphicon glyphicon-th"></i></span>
</div>
文本框看起来样式正确,但点击不好。我想也许这是一个剃刀问题,所以我用html做了一个文本框,没有变化:
$(document).ready(function () {
$('.datepicker').datepicker();
});
答案 0 :(得分:0)
问题原来是我的脚本标签。这是我的第一个MVC5应用程序,我想你不能再把它放到视图的底部了,它必须在_section()中,它在_include的底部呈现。