<a> tag, as opposed to href attribute?</a>重定向到链接

时间:2014-05-29 15:05:02

标签: jquery forms hyperlink

我有表格和链接。而不是链接是屏幕上的点击,我只想去它。我已经尝试重定向到&#34;#&#34;或将表单操作设置为&#34;#&#34;。但它似乎没有用。我需要一种通过<a>或其ID来打开或重定向到链接的方法。

<form method="post" name="form">
    Name search:
    <input id="ui" type="text" name="ui" />
    <input type="submit" class="Submit" value="submit" />
</form>

$ui = $_POST["ui"];

<a href="#" id="gallery_filter"
          data-filter=".<?php echo $ui; ?>"><?php echo $ui; ?></a>

1 个答案:

答案 0 :(得分:-1)

要链接到用作锚点的a标记(在页面上标记一个点),您可以使用以#开头的ID:

<form method="post" name="form" action="my_page.php#gallery_filter">
  ...
</form>

<a id="gallery_filter">Without an href, this is an anchor not a link.</a>

您无法将表单提交到仅作为锚点的网址(例如action="#gallery_filter"),但如果您将其添加到网址的末尾,则浏览器会正确导航到该网址。< / p>