我正在为历史课创建一个模拟版的谷歌审查。我正在尝试修改重定向网址,以便可以将自己的条款放入网址中:
function searchCensor()
{
var keyTerms = document.getElementById("search").value;
if(keyTerms == "censorship")
window.location = "http://andrewgu12.kodingen.com/history/censor.php";
else
window.location = "https://www.google.com/#hl=en&output=search&sclient=psy-ab&q="+keyTerms+"&oq="+keyTerms+"&aq=f&aqi=g4&aql=&gs_l=hp.3..0l4.851563l851824l0l851964l3l3l0l0l0l0l171l359l1j2l3l0.&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.,cf.osb&fp=bb242dc4ab43ba95&biw=1920&bih=963"
}
在 else 块中,我尝试将 keyTerms 插入 URL,但在搜索开始时我最终得到 undefined。有什么建议么?这是该网站的 URL:http: //andrewgu12.kodingen.com/history/