1

我有一个会员注册表格,其中只有在做出特定选择时才需要支付详细信息。

如果我是会员并且只想注册自己,它不会花费我任何费用,因此不需要付款。在这种情况下,我希望能够在不完成付款详细信息的情况下提交表单,因为它们以任何方式对我隐藏,使用一些我让别人帮助我的 javascript。

但是,如果我想带一两个客人,我可以选择会员 + XX 客人。只有选择其他客人,我才希望出现付款选项并处理。

你可以在这里看到我正在处理的页面:http: //www.faa.net.au/test/femmes-member-form.html

知道我该怎么做吗?任何帮助表示赞赏。

这是使用 Adob​​e Business Catalyst,即使我已经标记了这些词,以防万一不清楚。谢谢。

4

1 回答 1

2

您的验证是在 HTML 的这个函数中完成的:

function checkWholeForm65983(theForm) {
var why = "";
if (theForm.FirstName) why += isEmpty(theForm.FirstName.value, "First Name");
if (theForm.LastName) why += isEmpty(theForm.LastName.value, "Last Name");
if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value);
if (theForm.HomePhone) why += isEmpty(theForm.HomePhone.value, "Home Phone Number");
if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image");
if (theForm.CAT_Custom_257593) why += isEmpty(theForm.CAT_Custom_257593.value, "Member Number");
if (theForm.CAT_Custom_255275) why += checkDropdown(theForm.CAT_Custom_255275.value, "Available Dates");
if (theForm.CAT_Custom_255276 ) why += checkDropdown(theForm.CAT_Custom_255276.value, "Number of Tickets");
if (theForm.CAT_Custom_255277) why += checkSelected(theForm.CAT_Custom_255277, "Payment Method");
if (theForm.CAT_Custom_255279) why += isEmpty(theForm.CAT_Custom_255279.value, "Questions / Message or Other Information");
if (why != "") {
    alert(why);
    return false;
}
if (submitcount65983 == 0) {
    submitcount65983++;
    theForm.submit();
    return false;
} else {
    alert("Form submission is in progress.");
    return false;
}
}

具体来说CAT_Custom_255277,是仔细检查付款选项是否已填写。我们想忽略这个检查是否Member = $0被选中。所以尝试这样的事情:

if (theForm.CAT_Custom_255277 && theForm.CAT_Custom_255276.value != "1") 
    why += checkSelected(theForm.CAT_Custom_255277, "Payment Method");

我们将其设置为的原因"1"是因为您的选项Member = $0设置为"1"

<option value="1">Member = $0</option>

希望这有效!

于 2013-05-16T08:02:15.727 回答