jQuery(JavaScript代码库)——dialog对话框
配置对话框:
$("#add-user-modal").dialog({ autoOpen : false, //这个属性为true的时候dialog被调用的时候自动打开dialog窗口。当属性为false的时候,一开始隐藏窗口,知道.dialog("open")的时候才弹出dialog窗口。默认为:true。 resizable: false, //是否可以改变dialog的大小,默认为true,可以改变大小。 modal: true,// 是否使用模式窗口,模式窗口打开后,页面其他元素将不能点击,直到关闭模式窗口。默认为false不是模式窗口。 width : 400, //弹出框宽度 height : 200, //弹出框高度 position : "center",//窗口显示的位置 title : "添加用户", //弹出框标题 buttons: { "提交": function() { addUser(); }, "取消": function() { $(this).dialog("close"); }, }, });