如何使用自己的搜索栏搜索特定网站上的项目?

时间:2014-11-16 15:03:37

标签: html search search-engine

我正在尝试使用我的网站搜索栏在网站(http://www.mudah.my/Malaysia/Electronics-for-sale-3000)上搜索电子产品。但我不知道如何将我的搜索栏与网站上的搜索栏相关联,以获得我想要的结果。

<!DOCTYPE html>

<html>

<head><title>Seller Evaluation System</title></head>

<body bgcolor="#66ffff">

<h1><center><font color="blue">Seller Evaluation System<center></h1>

    <p><center>
        <form action="http://www.mudah.my/Malaysia/Electronics-for-sale-3000"><input type="search" name="search" size="48" placeholder="Search Electronic Gadgets...">  
        <input type="Submit" name="Search" value="Search"/>         
    </center></p>
</br>

</body>

</html>

2 个答案:

答案 0 :(得分:0)

你必须使用javascript。您还可以动态更改其他可用选项。像这样的东西

&#13;
&#13;
function searchSite(){
    var inputted=document.getElementById("searchinput").value;
    var searchForm=document.getElementById("searchForm");
  searchForm.action="http://www.mudah.my/Malaysia/Electronics-3000/"+inputted+"-for-sale?lst=0&fs=1&q="+inputted+"y&cg=3000&w=3&so=1&st=s";
  searchForm.submit();
}
&#13;
<form method="get" action="" id="searchForm">
  <input type="text" id="searchinput" >
  <button onclick="searchSite()">Search</button>
  </form>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您可以使用表单执行此操作。只需用您喜欢的网址替换网址

<form action="https://www.davidodhiambo.com/store/search">
<input name="q">
<input type="Submit">