尝试不同的方法后,我无法让它正常工作。
这是我的联系方式7表格
<label> First Name*
[text* your-name] </label>
<label> Last Name*
[text* last-name] </label>
<label> Your Email*
[email* your-email] </label>
<label> Zip*
[text* zip] </label>
[recaptcha]
[submit "Sign up now"]
我想根据他们输入的邮政编码重定向到2个不同的确认页面。
我有这个,但它不起作用..
on_sent_ok: "var zip = $("text[name=zip]").val();
if(zip == '94619' ){
location = 'http://dev-pier39.pantheonsite.io/confirmation';
}
else {
location = 'http://dev-pier39.pantheonsite.io/fun-pack-coupon-confirmation';
}"
知道我做错了吗?
提前致谢。
答案 0 :(得分:1)
您忘了逃避额外的双引号
javascript 代码看起来很好。
on_sent_ok: "var zip = $(\"text[name=zip]\").val(); ....
注意\"