在我的表單上,您必須選擇一個項目才能顯示錶單。我遇到的問題是提交時隱藏了表單。我該如何糾正?表單隱藏提交
這是我的腳本:
<script>
$(document).ready(function() {
$(".orderForm").hide();
$(".choice").each(function() {
$(this).click(function() {
$(".orderForm").show();
});
});
});
</script>
下面是HTML的一部分:
<form method="post" class="form-horizontal">
<div class="choiceContainer">
<@choicesSection><@choice id="2098885" class="choice">
<label>
<div align="left">
<h3 class="choiceName">
<@choiceSelectionRadioButton />
<@choiceName>148PKI</@choiceName>
</h3>
<div class="orderForm">
</div>
</div></div>
<div class="btn" align="center"><@selectedPaymentOptionSubmitButton label="Continue"
class="continue"/></div>
我更新了劇本太。
我要去猜測,透過重新加載頁面。你在'$(document).ready'中有一個'.hide'。 – 2014-09-25 16:56:42
你也可以使用submit()來處理提交。 http://api.jquery.com/submit/ – 2014-09-25 16:57:36
是的,它重新加載頁面。我該如何解決這個問題? – Military911 2014-09-25 16:58:31