私はこのようなjQuery UIダイアログボックスを作成しました:
$("<div></div>").dialog({
autoOpen: true, //for info, true is default
modal: true,
title: ':' + Id,
width: '340',
minHeight: '200',
open: function () {
},
close: function () {
$(this).dialog('destroy');
}
});
これで、OKボタンを設定したいのですが、OKボタンを押すと、次のajaxメソッドを通過します:
$.ajax({
url: "Home.aspx/DeleteProject",
type: "POST",
dataType: 'json',
contentType: 'application/json; charset=utf-8',
data: "{'projectSoid': '" + Id + "'}",
async: false,
success: function (data) {
if (data.d == "")
{
ProjectCarousel();
}
},
error: function (xhr) {
}
});