我目前有一个使用wordpress创建的表单:
[contact-form][contact-field label='What do you want him to say?' type='textarea' required='1'/]Word Limit: 50 words[contact-field label='Email' type='text' required='1'/][/contact-form]
我希望人们点击提交按钮(我实际上想将此按钮更改为"继续")并让人们重定向到新页面。
有谁知道如何做到这一点?
答案 0 :(得分:1)
我从未使用过WordPress,但经过一些研究后,您似乎正在使用一个名为“Contact Form 7”的插件。您应该在提交后尝试阅读他们的文档,重定向到不同的页面:
最简单的方法是使用Contact Form 7的自定义DOM事件来运行JavaScript。以下是在wpcf7mailsent事件发生时将您重定向到另一个URL的脚本示例:
<script> document.addEventListener( 'wpcf7mailsent', function( event ) { location = 'http://example.com/'; }, false ); </script>
https://contactform7.com/redirecting-to-another-url-after-submissions/