如何将搜索输入框的值更改为用户输入值

时间:2013-11-07 16:16:31

标签: javascript jquery search

这是代码

<form class="navbar-search pull-right header-link" method="post" name="searchportlet" id="searchportlet" onsubmit="window.location.href='/s.nl?ext=F&amp;sc=22&amp;category=&amp;search='+escape(document.forms['searchportlet'].elements['search'].value);return false;">
    <div class="dowith clearfix">
        <a href="#" class="left" onclick="window.location.href='/s.nl?ext=F&sc=22&category=&search='+escape(document.forms['searchportlet'].elements['search'].value);return false; return false;">
            <img alt="" src="/images/search.png" style="margin-top: 5px;">
        </a>
        <input name="search" type="text" onsubmit="window.location.href='/s.nl?ext=F&sc=22&category=&search='+escape(document.forms['searchportlet'].elements['search'].value);return false; return false;" onfocus="if (this.value == 'Search entire store...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search entire store...';}" value="Search entire store..." class="right textfield" id="search_input">
    </div><!--End dowith-->
</form>

如何保留用户输入的搜索输入文本。我需要js或jquery中的解决方案。在表单提交搜索后,整个商店的值必须由用户输入的文本替换

1 个答案:

答案 0 :(得分:0)

查看您的网站,此部分会在您的网页加载后执行:

jQuery(document).ready(function($) {

在它下面添加如下内容:

$('#search_input').val(location.href.split('&search=')[1] || '');

这不是一个好的解决方案(基本上读取URL并选择搜索词,如果存在)。 如果你可以编辑服务器端代码,那就更好地处理它。