0

我创建了一个注册页面,通过 iframe 用作注册页面。我想知道如果用户已经准备好使用联系表格,我该如何显示不同的页面(重定向?),这可能吗?谢谢

4

1 回答 1

1

在您的注册页面内

<% if (customer_has_used_contact_form()) %>
<script type="text/javascript">
   document.location="somewhere_else.html";
</script>

<% end %>
于 2012-12-03T21:50:04.410 回答