0

我一直在研究 Chrome 扩展程序并且遇到了问题。我正在尝试做的事情:当您单击搜索栏右侧的图标时,会出现一个搜索栏,您可以在其中输入查询并按 Enter。然后它将转到http://dev.bukkit.org/search/?search= (无论输入什么)。这就是我所拥有的,但它不起作用。

<scriptLANGUAGE="JavaScript">
function whatURL() {
window.location= 'http://dev.bukkit.org/search/?search=' + document.form1.url.value;
}
</SCRIPT>

<FORM name=form1>
<inputtype="text"id="url">
<inputtype="button"id="btnSearch"value="Search"onClick="return whatURL()"/>
</FORM>

谢谢:) 注意:我有清单和所有东西,它只是 javascript 部分不起作用。编辑:重写它现在它的工作!

<html>
<head>
  <script>
    function onLoad() {
      document.getElementById("mytextfield").focus();
    }

    function onKeyPress(e) {
      if (e.keyCode == 13) {
        openResults();
      }
    }

    function openHomePage() {
      window.open("http://dev.bukkit.org/");
    }

    function openResults() {
      window.open("http://dev.bukkit.org/search/?search=" + encodeURIComponent(document.getElementById("mytextfield").value));
    }
  </script>
</head>
<body onload="onLoad();">
  <img src="png-3.png" onclick="openHomePage();" style="border-width: 0px; cursor: pointer" /><br>
  <div name="myFormDiv" style="center: 6px;">
  <br>
    <input type="search" id="mytextfield" name="mytextfield" value="Search..." onkeypress="onKeyPress(event);" />

  </div>
 </div>
</body>
</html>
4

1 回答 1

1

换个试试...

<inputtype="button"id="btnSearch"value="Search"onClick="return whatURL()"/>

至..

<inputtype="button"id="btnSearch"value="Search"onClick="whatURL()"/>

window.location不需要返回任何东西。执行时,您已经将窗口指向给定的 urlwindow.location = "http://myurl.com"

于 2012-04-26T00:06:17.187 回答