2

我想在我的页面网址中添加类似“#coupon”的内容。谁能帮我?

http://www.myhost.com/design-brief.php#coupon

<?php
    if(isset($_POST['TryCoupon'])) 
    {
        // I need something here
        // I dont want to use Location to direct as I am on the same page and want to preserve field values
    } 
?>

我的页面上有一个锚点,我希望用户在用户提交表单时转到该锚点。

<td id="coupon"></td>
4

2 回答 2

2

更改表单的操作以包含锚点:

<form method="post" action="/some/index.php#coupon">

这将发布到 /some/index.php 并且当页面显示时,它也会转到锚点。

于 2013-03-01T15:13:31.083 回答
0
<?php

if(isset($_POST['TryCoupon'])) 
{
  header("Location:place/your/url/here");
}
?>
于 2013-03-01T13:20:46.513 回答