-1

我正在尝试使用 javascript 向 Google 发送查询,但窗口只是转到主页。

这是我的代码:

var query = "hello world";
var firstPart = "http://google.com/?=";
window.location.href = firstPart + query;

页面的 URl 是正确的,但它没有转到结果。

4

1 回答 1

2

改变:

var firstPart = "http://google.com/?=";

到:

var firstPart = "http://google.com/search?q=";

使用他们的搜索协议

https://developers.google.com/search-appliance/documentation/62/xml_reference

于 2013-03-29T17:46:15.817 回答