4
我是新來的asp.net MVC4架構我被困在下面的東西請幫助我。如何在asp.net MVC4中包含javascript代碼查看頁面?
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/jqueryui")
<script type="text/javascript">
$(function() {
$("#sections").tabs();
//here i am getting error that Object[object object] has not method tabs
});
</script>
<div id="sections">
<ul>
<li><a href="#section-1">section-1 </a></li>
<li><a href="#section-2">section-2 </a></li>
</ul>
<div id="section-1">
section-1 content............
</div>
<div id="section-2">
section-2 content............
</div>
</div>
在此先感謝......
感謝答覆...但是當我刪除@ Scripts.Render(「〜/ bundles/jqueryui」)這行說它沒有定義$ – savy
你不應該刪除'@ Scripts.Render(「〜/ bundles/jqueryui」)'行。如果'_Layout.cshtml'中已經存在'@ Scripts.Render(「〜/ bundles/jquery」)行,你應該刪除它。是這樣嗎?我已經用我的答案更新了你的觀點的外觀。 –
非常感謝好友......我的問題解決了..... – savy