gpt4 book ai didi

javascript - 提交后关闭弹出表单

转载 作者:行者123 更新时间:2023-11-28 08:46:38 25 4
gpt4 key购买 nike

有人可以帮我吗,我有一个在视频页面上一分钟后弹出的表单,我希望表单在提交后自行关闭,以便视频可以继续,这如何用 jQuery 实现?

这是我的表格

 <ul class="mktLblLeft">
<div class="txt-fld">
<label>First Name:</label><span class="mktInput"><input class="mktFormText" id="Email" maxlength="255" name="24132" tabindex="1" type="text" value="" />
</span></li>

<label>Last Name:</label><span class="mktInput"><input class="mktFormTex" id="FirstName" maxlength="255" name="24134" tabindex="2" type="text" value="" /></span></li>
<label>Email Address:</label><span class="mktInput"><input class="mktFormText" id="LastName" maxlength="255" name="24136" tabindex="3" type="text" value="" />
</div>
<div class="btn-fld">
<button type="submit">Sign Up &raquo;</button>

我已经尝试过这段代码,有什么问题吗?

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");
}

}

最佳答案

一个简单的方法是在单击按钮时使用 hide()。

<button type="submit" onlick="$('#myForm').hide()">Sign Up &raquo;</button>

假设这是在 <form id="myForm">

关于javascript - 提交后关闭弹出表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19686763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com