我的学校组织目前有一个包含 JQuery 并使用“对话框”弹出框(JQuery-UI?)的网站。我正在使网站具有响应性,但不知道如何使对话框具有响应性。我找到的唯一解决方案是 JQuery mobile,但我不确定如何将它实施到我们当前的网站中。我知道我的问题有点含糊,但我想知道是否有人有简单的解决方案?
这是我认为是我的一个弹出框的代码。(我不太了解代码)任何和所有的帮助表示赞赏。
$( "#dialog-new" ).dialog({
resizable: false,
width:900,
modal: true,
autoOpen: false,
buttons: {
"Clear Form": function() {
clearForm($("#newapsform"));
},
"Create Request": function() {
if(formIsOkay($("#newapsform")))
{
$.ajax
({
type: "POST",
url: "system/aps2.newrequest.php",
data: $("#newapsform").serialize(),
success: function()
{
$( "#dialog-new" ).dialog( "close" );
$("#goodmsg").html("Created photo request successfully!");
$('#goodmsgdiv').fadeIn(1500).delay(3000).fadeOut(1500);
datatables.fnDraw();
searchtables.fnDraw();
phototables.fnDraw();
clearForm($("#newapsform"));
},
error: function()
{
$( "#dialog-new" ).dialog( "close" );
$("#badmsg").html("Could not create request: Use the force next time.");
$('#badmsgdiv').fadeIn(1500).delay(3000).fadeOut(1500);
}
});
}
}
}
});