在下面的表单中,我更改了 action 属性并提交了表单。这很好用。发生的事情是:如果当前位置是http://localhost/search/?mod=all
并且搜索词是 14,则操作将更改为,http://localhost/search/?mod=all&handle=14
浏览器中的 url 也会更改。
但是下次我尝试搜索时,由于现在的 url 是http://localhost/search/?mod=all&handle=14
,我得到http://localhost/search/?mod=all&handle=14&handle=15
. 它会随着每个搜索词继续下去。
知道如何http://localhost/search/?mod=all
通过这一切保留原始网址。
这是表格:
<form method="GET" class="modForm" action="">
<input type="text" placeholder="Search" class="modSearchValue">
<input type="radio" name="text" value="text" class="text" title="Search">
</form>
这是jQuery:
$('.modForm').submit(function(event) {
var $this = $(this);
var query = $this.find('.modSearchValue').val(); // Use val() instead of attr('value').
var locale = window.location;
if ($('.text').is(':checked')) {
query = '&text=' + query;
} else {
query = '&handle=' + query;
}
route = locale + query;
console.log(route);
if (query.length >= 1) {
// Use URI encoding
var newAction = (route);
console.log(newAction); // DEBUG
// Change action attribute
$this.attr('action', newAction);
//event.preventDefault();
} else {
console.log('Invalid search terms'); // DEBUG
// Do not submit the form
event.preventDefault();
}
});