gpt4 book ai didi

javascript - 使用 JavaScript 在提交时重定向表单插件

转载 作者:行者123 更新时间:2023-12-02 17:05:50 26 4
gpt4 key购买 nike

当用户单击“提交”时,我需要帮助尝试重定向 WordPress 表单插件。我可以将 javascript 添加到表单中,在其中检查单选按钮的值并根据该值进行重定向。下面是我尝试添加的代码。下面是我在 firebug 中看到的错误。

Javascript:

on_sent_ok: "if (document.getElementByName('review_stars').value=='4')||(document.getElementByName('review_stars').value=='5')
{location = 'http://74.208.11.118:8085/review-submission/'} else { location = 'http://74.208.11.118:8085/review-thank-you/'};"

错误:

SyntaxError: unterminated string literal


"if (document.getElementByName('review_stars').value=='4')||

最佳答案

除非我失明了,否则你在 if 语句周围缺少 ( 和 ) 。试一试:

on_sent_ok: "if (document.getElementByName('review_stars').value=='4' || document.getElementByName('review_stars').value=='5'){location = 'http://74.208.11.118:8085/review-submission/'} else { location = 'http://74.208.11.118:8085/review-thank-you/'};"

关于javascript - 使用 JavaScript 在提交时重定向表单插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25270848/

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