我想让我的表格在其他网站(不同的网站:example.com)中搜索
搜索字词(xxx)需要定向到:
http://www.example.com/search___XXX.html
一个朋友给我写了这个函数:
function SearchKeyword()
{
var searchKeyword="";
if($('.txtSearch').eq(0).val() !="Search") //mobile
searchKeyword = trim( $('.txtSearch').eq(0).val() );
if($('.txtSearch').eq(1).val() !="Search")
searchKeyword = trim( $('.txtSearch').eq(1).val() );
// searchKeyword = trim($('#txtSearch').val());
if(searchKeyword != ""){
document.location.href = 'search___' + searchKeyword + '.html';
}
}
如何与此HTML表单关联?
<div class="wrap">
<div class="search">
<input type="text" class="searchTerm" placeholder="What are you looking for?">
<button type="submit" class="searchButton">
<i class="fa fa-search"></i>
</button>
我认为我的朋友没有将代码连接到该站点,并且该JS通常是
谢谢你的帮助 !
约翰
最佳答案
您需要将输入元素的类从"searchTerm"
更改为"txtSearch"
。
或将功能中的所有'txtSearch'
更改为'searchTerm'
。