获取输入字段值并使用Javascript重定向

时间:2015-08-05 12:52:17

标签: javascript jquery forms

我想在Javascript变量中获取输入字段数据并执行重定向。

<form onsubmit="someRandomFunction()">
<input type="search" name="search" id="search_bar" placeholder="Type a string">
</form>

现在,我有HTML文件,即xyz.html,abc.html,pqrs.html等。 我希望用户在他键入的名称的页面上被重定向。例如,搜索字符串pqrs应该将用户重定向到pqrs.html ..请帮助我使用Javascript函数的代码..

3 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

以下是摘录。

function someRandomFunction()
{
    window.location.pathname = '/'+document.getElementById('search_bar').value+'.html';
    return false;
}

答案 2 :(得分:0)

请查看 fiddle

以下是摘录。

function someRandomfunction() {
  var page = document.getElementById('search_bar').value;;
  location.href = page + '.html';
  return false;
}
<form onsubmit="return someRandomFunction()">
  <input type="search" name="search" id="search_bar" placeholder="Type a string" />
</form>