1

我是网站编码新手,正在使用 Webplus 网站搜索工具。但是,我只希望它搜索我网站上的某些页面,并且发现通过在我要搜索的页面上包含一个单词,然后在搜索输入中包含该单词(隐藏),它只会浏览这些页面。

我尝试了以下代码:

<DIV ALIGN=CENTER>
<form id="site_search_1" action="" onSubmit="return false;" style="position: absolute; top:117px; left:584px; width:250px; height:44px;margin: 0; padding: 0;">
  <input id="site_search_1_input" value="                                              secret" name="site_search_1_input" onkeypress="
    if (event.keyCode==13)
      window.location.href='results.html?site_search_results_1='+document.getElementById('site_search_1_input').value+'&amp;depth=0;"
  style="width: 170px; border: none; /* EditStyle */" type="text">
<div style="display: inline;">
  <input type="image" src="wpimages/Search Icon.png" style="position: absolute; top:-5px; left:220px;" button onclick="
    window.location.href='results.html?site_search_results_1='+document.getElementById('site_search_1_input').value+'&amp;depth=0';"
  value="Search" name="submit" onfocus="this.blur()" onmouseover="this.src='wpimages/Search Icon (H).png'" onmouseout="this.src='wpimages/Search Icon.png'" onmousedown="this.src='wpimages/Search Icon (H).png'"/>
</div>
</form>
<script type="text/javascript" language="JavaScript">
document.forms['site_search_1'].elements['site_search_1_input'].focus();
</script>
</DIV>

但这有点混乱,并认为它们可能是一种使用 2 个输入进行搜索的方法,其中一个以秘密词为值,但被隐藏了。任何帮助将不胜感激,欢迎使用一些基本代码仅搜索指定页面的任何替代方法。

4

0 回答 0