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