我试图使用自动完成,但它在 VS2012 中不起作用。因此,我从 jQuery(http://jqueryui.com/autocomplete/#default)中提取了一个样本,并将其粘贴到 VS2012 和 VS2010 中。它在 2010 年运行良好,但在 2012 年抛出异常。
知道为什么会这样吗?
为了避免任何插件或脚本不匹配的情况,我使用了 jquery 站点给出的 cdn 引用。
这是我使用的源代码。这是唯一的内容,VS2012和VS2010中没有添加其他内容
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Autocomplete - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
$( "#tags" ).autocomplete({
source: availableTags
});
});
</script>
</head>
<body>
<div class="ui-widget">
<label for="tags">Tags: </label>
<input id="tags" />
</div>
</body>
</html>
编辑:我观察到在 VS2012 中,如果没有提及,它会附加默认布局。同样,如果我们删除 "@RenderSection("scripts", false);" 在 layout.cshtml 文件中,事情将开始工作。
有谁知道这是为什么?