私はjavascriptで何かをしようとしています(私は初心者で、それを勉強しています)。変数に保存されているリンクを開く方法を知りたいです。私はしようとしています...
<input type="button" onclick="document.location.href=Query;" />
ここで、Queryは、別のボタンで機能するRicercaメソッドの変数です。
function ricerca()
{
var Link = "http://www.mysite.com/search?q=variabile&k=&e=1";
var Name= document.getElementById('utente').value;
var Query = Link.replace("variabile",Name);
alert(Query);
return false;
}
もう1つのボタンは、カスタム検索リンクを生成します...
input type="text" id="utente">
<input type="submit" value="Click me" onclick="return ricerca();" />
私のコードの何が問題になっていますか?