我正在尝试向我的UI模式框添加第二个关闭按钮,以及我的模态框右上角的关闭窗口文本。
我该怎么做?
这是我到目前为止的代码
function showDialog(){
$("#example").dialog({
modal: true // Make the dialog "modal" (show an overlay beneath the dialog)
});
return false;
}
这是模态的网址,如果单击显示对话框,则显示模态框 http://satbulsara.com/NSJ-LOCAL-02-06/eqs1.htm
谢谢,
周六
答案 0 :(得分:1)
$("#second-anchor-id").click(function(){
$("#example").dialog("close");
return false;
});
答案 1 :(得分:0)
你的意思是这样吗?
function showDialog(){
$("#example").dialog({
modal: true // Make the dialog "modal" (show an overlay beneath the dialog)
buttons:{ "Close": function() { $(this).dialog("close"); } }
});
return false;
}