我正在寻找一个提交然后关闭叠加窗口的按钮。
我的按钮的代码是:
Settings.Secure
在选择完成后让按钮关闭,我错过了什么?
答案 0 :(得分:0)
不清楚你的问题。它来自假设。也许它可以帮助。
function closeSelf(){
// do something
if(condition satisfied){
alert("conditions satisfied, submiting the form.");
document.forms['certform'].submit();
window.close();
}else{
alert("conditions not satisfied, returning to form");
} }
<input type="button" class="purchase btn btn-warning" value="Select" onclick="closeSelf();"/>