带有Chrome扩展程序的window.location.href - 新标签页

时间:2013-05-15 19:53:15

标签: redirect

我有一个输入框,我可以输入内容。

<input type="text" id="query">

然后用

抓住它
query = document.getElementById("query").value;

并使用

重定向
window.location.href = "http://site.com/" + query;

当我按下onclick =“func();”

时,会发生这种情况

当我有一个普通的.html文件时,它可以工作,但当我把它放入我的Chrome扩展程序时,它不会重定向。它甚至没有做任何事情。

我试过把

chrome.tabs.create( { url: "http://www.site.com"} );

进入我的函数,但它也不会加载。 我的manifest.json有

"permissions": [
    "tabs"
]

谢谢

0 个答案:

没有答案