0
對不起,這個問題很模糊,但很簡單。我不確定我是否正確設置了這個jQuery庫以便與mvc 4一起使用。http://www.jqwidgets.com如何在mvc4中使用jqx jquery庫?
沒有任何演示正在工作。沒有錯誤,它根本就沒有做任何事情。例如:
@section pageScripts
{
<!-- add the jQuery script -->
<script type="text/javascript" src="~/scripts/jquery-1.8.2.min.js"></script>
<!-- add the jQWidgets framework -->
<script type="text/javascript" src="~/jqwidgets/jqwidgets/jqxcore.js"></script>
<!-- add one or more widgets -->
<script type="text/javascript" src="~/jqwidgets/jqwidgets/jqxbuttons.js"></script>
<!-- add one of the jQWidgets styles -->
<link rel="stylesheet" href="~/jqwidgets/jqwidgets/styles/jqx.darkblue.css" type="text/css" />
<script type="text/javascript">
$(document).ready(function() {
var theme = getTheme();
var source = '@Model.Friends';
$('#friendsList').jqxDropDownList({ source: source, selectedIndex: 1, width: '200', height: '25', theme: theme });
});
</script>
}
<div id='friendsList'></div>
這是從網站給出的例子,但它什麼也沒做。我也注意到,在intellisense(VS2012)中沒有任何控件彈出。
我懷疑有一些東西需要配置成束或_layout.cshtml
渲染我真的很新的這一點。我一直無法在網上找到很多直接的答案。任何幫助?