我正在尝试使用 javascript 向 Google 发送查询,但窗口只是转到主页。
这是我的代码:
var query = "hello world";
var firstPart = "http://google.com/?=";
window.location.href = firstPart + query;
页面的 URl 是正确的,但它没有转到结果。
我正在尝试使用 javascript 向 Google 发送查询,但窗口只是转到主页。
这是我的代码:
var query = "hello world";
var firstPart = "http://google.com/?=";
window.location.href = firstPart + query;
页面的 URl 是正确的,但它没有转到结果。
改变:
var firstPart = "http://google.com/?=";
到:
var firstPart = "http://google.com/search?q=";
使用他们的搜索协议:
https://developers.google.com/search-appliance/documentation/62/xml_reference