Bum*_*Bee 2 javascript jquery modal-dialog
我有一个模态窗口,在下拉列表中点击一个项目时打开.按下按钮,我无法实现关闭对话框.
var $that = this;
$("#btncart_cancel").on("click", function () {
///// ***********close the dialog ***************
/// tried this but not working
$that.dialog("close");
});
Run Code Online (Sandbox Code Playgroud)
我的代码:
$(".ddlCart li").click(function (e) {
$('#actionsCart').slideToggle();
var ddlselectedVal = $(this).attr('id');
var selectedListinsCount = selected_Listings.length;
var SelectedMlsnums = selected_Listings.join();
var agentId = $("#AgentId").val();
var EnvironmentURL = $("#EnvironmentURL").val();
var autoUrl = "/Stats/SearchContacts";
var Action = "PreAddToCart"
var postData = {
AgentId: agentId,
Mlsnums: SelectedMlsnums,
ActionTypeValue: Action
};
var $that = this;
var close = function (event, ui) {
$(this).dialog("destroy");
}
var open = function (event, ui) {
var agentId = $("#AgentId").val();
var url = EnvironmentURL + "/Stats/SearchContacts";
$("#btncart_cancel").on("click", function () {
///// ***********close the dialog ***************
});
$("#btncart_submit").on("click", function () {
$(".liloading").show();
if (App.ContactInfo.Id != 'undefined') {
var contactKey = App.ContactInfo.Id;
var cartName = App.ContactInfo.Name;
} else {
var contactKey = 0;
var cartName = 'My Personal Cart';
}
var note = $("#txtNotes").val();
var url = EnvironmentURL + "/Stats/Cart";
//Send the data using post and put the results in a div
$.post(url, {
CartName: cartName,
Notes: note,
Contactkey: contactKey,
ActionTypeValue: "AddToCart"
},
function (data) {
// Replace current data with data from the ajax call to the div.
$("#dvModalDialog").empty().append(data);
});
});
};
var rd = Mod.ReportsDialog({
title: 'Add To Cart',
close: close,
open: open
});
rd.url = EnvironmentURL + "/Stats/Cart";
rd.targetElement = '#dvModalDialog' // '#dvSendEmail'
rd.formName = '#frmCart'
rd.postData = postData
rd.open();
var $that = this;
});
Run Code Online (Sandbox Code Playgroud)
小智 8
我用close方法看到的问题是它$that不是JQuery对象.
你也许可以用两种解决这个问题$($that).dialog("close")或$(this).dialog("close")或$('#dvModalDialog').dialog("close").