我习惯了 MVC2 ...您只需将链接添加到脚本和源代码到视图,然后调用 jquery 函数和中提琴...您有工作的 Jquery 代码。但我无法让我的 jqGrid tableToGrid 函数工作。我猜是因为我根本没有正确加载 jquery 库,或者我没有在正确的位置运行脚本。你能看看我的代码,看看可能有什么问题吗?
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>ShowAllEncounters</title>
<link href="@Url.Content("~/Content/jquery.jqGrid/ui.jqgrid.css")" rel="Stylesheet" type="text/css"/>
</head>
这将是头......我以前也有我的脚本链接在那里......但这不起作用......所以我把标签放在外面......就像这样......
</html>
<script src="@Url.Content("~/Scripts/jquery.jqGrid.min.js")" type="text/javascript"/>
<script type="text/javascript">
$(document).ready(function () {
...});
我错过了什么吗?如何在 MVC4 站点中编写 jquery 脚本?
我什至不能得到一个可怕的警报出现!!!!!!!!!!!!!
@model IEnumerable<FocusedReadMissionsRedux.Models.TemplateModel>
<!DOCTYPE html>
<html>
<head>
<script src="@Url.Content("~/Scripts/jquery.jqGrid.min.js")" type="text/javascript"/>
<link href="@Url.Content("~/Content/jquery.jqGrid/ui.jqgrid.css")" rel="Stylesheet" type="text/css"/>
<script type="text/javascript">
$(document).ready(function () {
alert("what is going on");
});
</script>
<title>ShowAllEncounters</title>
</head>
更新:似乎我在加载 jquery 库时遇到了问题。这肯定是个问题。我需要一个可靠的模式来将这些脚本添加到项目中吗?