我在弹出窗口上加载了一个视图,它工作正常,但没有设置窗口标题并且总是为空,但我在我的代码中设置它运行没有错误。我是怎么了?
$(function () {
$(".dialog-trigger").on("click", function (event) {
event.preventDefault();
$.ajax({
url: "OpenSendSmsDialog",
type: "GET",
})
.done(function (result) {
$("#clientdetailmodal").html(result).dialog({
autoOpen: true, width: 400, modal: true, show: {
effect: "blind",
duration: 1000
}
}, "option", "title", "321 file");
});
});
});