我試圖實現彈出聯繫我們在本教程的對話框: http://www.matthidinger.com/archive/2011/02/22/Progressive-enhancement-tutorial-with-ASP-NET-MVC-3-and-jQuery.aspxJQuery用戶界面對話框沒有發現
我有一個運行精絕的解決方案的工作版本。
雖然試圖將其融入我自己的解決方案,但我遇到了一個問題。
我已經創建了一個contactdialog.js文件在我的scripts目錄:
/// <reference path="jquery-1.6.2.min.js"/>
/// <reference path="jquery-ui-1.8.11.js"/>
$.ajaxSetup({ cache: false });
$(document).ready(function() {
$(".openDialog").live("click", function (e) {
e.preventDefault();
$("</div>")
.addClass("dialog")
.attr("id", $(this)
.attr("data-dialog-id"))
.appendTo("body")
.dialog({
title: $(this).attr("data-dialog-title"),
close: function() { $(this).remove() },
modal: true
})
.load(this.href);
});
$(".close").live("click", function (e) {
e.preventDefault();
$(this).closest(".dialog").dialog("close");
});
});
然後在我看來,我有靠近頂部:
<script src="~/Scripts/jquery-1.6.2.min.js" type="text/javascript"></script>
<script src="~/Scripts/jquery.unobtrusive-ajax.js" type="text/javascript"></script>
<script src="~/Scripts/jquery-ui-1.8.11.js" type="text/javascript"></script>
<script src="~/Scripts/contactdialog.js" type="text/javascript"></script>
進一步回落:
@Html.ActionLink("Contact Us", "ContactUs", "Home", null, new { @class = "openDialog", data_dialog_id = "emailDialog", data_dialog_title = "Contact Us"})
現在我的鏈接成功地進入了javascript功能,並且好像做了add class OK。 但是,當它到達.dialog函數時,它會拋出以下異常: 「對象不支持屬性或方法對話框」
這似乎表明jquery-UI尚未加載。
但是我不明白爲什麼? 如果我在Chrome中加載頁面並檢查頁面源代碼,那麼jquery-ui-1.8.11.js的鏈接會很開放。
謝謝Ashish。然而,我正在使用的視圖是_Layout.cshtml ,它是MVC 4模板的一部分。我試着將它添加到home索引視圖中,但這沒有任何區別。 –