有人可以幫我在這裏,我有一個窗體後,在視頻頁面分鐘彈出窗口,我希望窗體關閉它自己提交後,視頻可以繼續,這是如何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 »</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");
}
}
我可以想象你有一些代碼,處理提交表單...應該能添加它沒有? –
@Bartdude我添加了代碼我試過 – rockydude
@JasonP我有事件處理程序腳本,我可以在那裏添加它。我正在尋找正確的功能來做到這一點。 – rockydude