美好的一天!
我想关闭一些html弹出窗口。
首先,我有静态网站,它创建了弹出窗口。这个窗口有提交按钮,向asp mvc app发送POST请求。此应用程序运行良好并返回View()(索引页面上显示消息“Ok”。而Buton“Close”)。
当我点击关闭按钮时 - 没有任何反应。
我的代码:
<body>
<button type="button" id="btn" onclick="window.parent.jQuery('#btn, #m_window').hide('slow');">Close</button>
<!-- <button type="button" id="btnFoo" onclick="$("#btnFoo, #m_frame").live("click", function(){
$("#mistake").remove();
}); ">Close form </button>
-->
</body>
m_frame-弹出窗口的框架。 错误的弹出窗口。
请告诉我如何关闭此弹出窗口? 谢谢!
window.close()无效。
P.S。在js脚本(弹出窗口创建时)我写道:
$("#btn",#m_window").live("click",function(){
var p = parent;
var win = p.document.getElementById('mistake');
win.parentNode.removeChild(win);
});
但它也不起作用。
答案 0 :(得分:1)
试试这个
<script>
$(document).ready(function () {
$("#displayinmodal").dialog({
autoOpen: true,
modal: true,
buttons: {
"Close": function () {
$("#displayinmodal").dialog("close");
}
}
});
});
</script>
<div id="displayinmodal">
Popup demo
</div>
答案 1 :(得分:0)
你应该尝试:
window.close();