我正在使用一个 Jquery 模式窗口,里面有一个 asp 按钮。这里的问题是 jQuery-UI 在元素之外创建对话框,因此单击它永远不会提交表单。我试图通过添加来解决这个问题:
$(this).parent().appendTo(jQuery("form:first"));
但是,我是 Jquery 的新手,不知道在哪里添加这一行。我以为我很接近任何帮助?谢谢!
jQuery(function ($) {
var OSX = {
container: null,
init: function () {
$("input.osx, a.osx").click(function (e) {
e.preventDefault();
var dlg = $("#osx-modal-content").modal({
overlayId: 'osx-overlay',
containerId: 'osx-container',
closeHTML: null,
minHeight: 80,
opacity: 65,
position: ['0',],
overlayClose: true,
onOpen: OSX.open,
onClose: OSX.close
});
});
},
open: function (d) {
var self = this;
$(this).parent().appendTo(jQuery("form:first")); // <--APPENDING HERE
self.container = d.container[0];
d.overlay.fadeIn('fast', function () {
$("#osx-modal-content", self.container).show();
var title = $("#osx-modal-title", self.container);
title.show();
d.container.fadeIn('slow', function () {
setTimeout(function () {
var h = $(document).height() - 25
d.container.animate(
{height: h},
300,
function () {
$("div.close", self.container).show();
$("#osx-modal-data", self.container).show();
}
);
}, 200);
});
})
},
close: function (d) {
var self = this;
d.container.animate(
{top:"-" + (d.container.height() + 20)},
300,
function () {
self.close();
}
);
}
};
OSX.init();
});