转到带有textfield值的页面作为哈希

时间:2011-07-01 01:59:31

标签: javascript submit form-submit textfield

好吧,这应该很容易,但对我来说似乎并不是这样......可能是因为我非常接近截止日期并且还有很多工作要做。

这就是我想要做的; 我有一个带有文本字段和按钮的html表单 - 无论何时单击按钮或按下输入,我希望它转到特定页面,最后将文本字段的值作为哈希值。

例如

; 用户输入“测试”并按下输入或点击按钮,页面进入“google.com #test”

1 个答案:

答案 0 :(得分:0)

<html>
<head>
  <script type="text/javascript">
    function do_it() {
      var hash = document.getElementById("hash_input").value;
      window.location = "http://google.com#"+hash;
    }
  </script>
</head>
<body>

<input id="hash_input" type="text"></input>
<input type="button" onclick="do_it()" value="Go"></input>

</body>
</html>