如何使用Gravity表格重定向到另一个页面下拉值?

时间:2012-07-30 13:39:35

标签: forms wordpress gravity

我正在尝试在Gravity Forms中创建一个包含下拉菜单的表单。下拉列表在网站上的标签名称中包含页面地址的相应值。我正在尝试将用户发送到他们选择的页面。这将如何实现?

2 个答案:

答案 0 :(得分:1)

实际上,在这里使用钩子: http://www.gravityhelp.com/documentation/page/Gform_confirmation

您可以获取下拉列表的值,然后在提交表单后根据其选择重定向。

答案 1 :(得分:0)

的Javascript。

  // get your select element and listen for a change event on it
  $('#the_drop_down').change(function() {
     // set the window's location property to the value of the option the user has selected
     window.location = $(this).val();
  });

via:Redirect automatically when selecting an item from a select drop-down list

该帖子涵盖 IE兼容性和使用 jQuery 版本等问题。