如何使用此 JS 代码让我的搜索按钮起作用?

How Do I Get My Search Button To Function With This JS Code?

我有一个自定义搜索栏,但我不知道如何使用 js 代码让它发挥作用。

这是我的搜索按钮:

script type = "text/javascript" >
  document.getElementById('searchform').onsubmit = function() {
    window.location = 'http://www.google.com/search?q=site:yourdomainname ' + document.getElementById('test').value;
    return false;
  }
<!DOCTYPE html>
<center>
  <html>

  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <style>
      input[type=text] {
        width: 130px;
        box-sizing: border-box;
        border: 2px solid #000000;
        border-radius: 4px;
        font-size: 16px;
        background-color: white;
        background-image: url('searchicon.png');
        background-position: 10px 10px;
        background-repeat: no-repeat;
        padding: 12px 20px 12px 40px;
        -webkit-transition: width 0.4s ease-in-out;
        transition: width 0.4s ease-in-out;
      }
      
      input[type=text]:focus {
        width: 100%;
      }
    </style>
  </head>

  <body>

    <form>
      <input type="text" name="search" placeholder="Search..">
    </form>

  </body>

  </html>

如果你能帮助我那就太好了,谢谢。

在您的 html 中没有声明元素 searchformtest 您可以 getElementById.

将您的表单更改为如下所示:

<form id="searchform">
  <input id="test" type="text" name="search" placeholder="Search..">
</form>