我正在尝试在重力表单中创建一个包含下拉菜单的表单。下拉列表在标签中包含站点上的页面名称,然后在值中包含相应的页面地址值。我正在尝试将用户发送到他们选择的页面。这将如何实现?
问问题
6294 次
2 回答
1
实际上,在这里使用钩子:http: //www.gravityhelp.com/documentation/page/Gform_confirmation
您可以获取下拉列表的值,然后在他们提交表单后根据他们的选择进行重定向。
于 2012-08-01T16:39:43.040 回答
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();
});
那篇文章涵盖了IE 兼容性和使用jQuery版本等问题。
于 2012-07-30T15:16:52.727 回答