我目前正在使用此表单。
<form class="navbar-form">
<div class="form-group" style="display:inline;">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search...">
<span class="input-group-btn">
<button class="btn btn-default" type="button">Go!</button>
</span>
</div>
</div>
</form>
我想采取&#34;输入&#34;去吧!按下按钮,或者用户点击&lt; enter&gt;在键盘上。我想把这个输入放在另一个页面上
Search: <input ng-model="query">
我正在尝试学习如何使用Jquery。
<script>
$( "#id" ).click(function()
{
"I don't know what to do here"
});
</script>
答案 0 :(得分:0)
如果你想把它带到一个页面search?query=TheSearchText
,你可以使用location.href
:
$( "#id" ).click(function () {
location.href='search?query=' + $('[ng-model="query"]').val();
});
换句话说,请在搜索文本中提供id
:
<input ng-model="query" id="query" />
$( "#id" ).click(function () {
location.href='search?query=' + $('#query').val();
});