我知道這個主題有很多線程。搜索了很多已經好幾天了(!)......因此而變得瘋狂。 我檢查了這些: Uncaught TypeError: Object #<Object> has no method 'dialog' Uncaught TypeError: Object [object Object] has no method 'dialog'Uncaught TypeError:Object [object Object] has no method'dialog'
不能明白我做錯了,需要你的幫助。下面是我正在努力工作的代碼。
Index.chtml
@{
ViewBag.Title = "Home Page";
}
<br/>
<input type="button" value="Get Form" onclick="getForm()" />
<script type="text/javascript">
function getForm(){$('#dialog').dialog({
autoOpen: true,
width: 400,
resizable: false,
title: 'My Table',
modal: true,
open: function(event, ui) {
$(this).load('@Url.Action("Index", "Home")');
},
buttons: {
"Close": function() {
$(this).dialog("close");
}
}
});
}</script>
<div id="dialog"></div>
控制器
public ActionResult _dialog()
{
return View();
}
public ActionResult Index()
{
return View();
}
_dialog.chtml
<h3>Partial View code</h3>
_Layout.chtml
...
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="~/Scripts/jquery-ui-1.10.4.min.js"></script>
<link href="@Url.Content("~/Content/themes/base/jquery-ui.css")" rel="stylesheet" type="text/css" />
...
你錯過了jQuery UI庫的鏈接嗎? –
檢查您的外部腳本是否已正確嵌入到呈現的HTML代碼中,並且可以實際到達(不是404或類似的東西)。 – CBroe
^是的,將鏈接(src)複製到jquery ui lib並粘貼到您的瀏覽器(帶域名),你能看到它嗎? –