我有一个javascript函数。点击即可调用此方法。使用document.getElementById
我在那里获得了某些参数。使用该参数我需要构建一个url。即,onclick必须执行该URL。
例如,在javascript中,
function remove()
{
var name=...;
var age = ...;
// url should be like http://something.jsp?name=name&age=age
}
简而言之,我需要点击
执行http://something.jsp?name=name&age=age
此网址
<input type="button" name="button" onclick="remove();" />
答案 0 :(得分:12)
function remove()
{
var name = ...;
var age = ...;
window.location = 'http://something.jsp?name=' + name + '&age=' + age;
}
答案 1 :(得分:5)
我用:
document.location.href = "report.html";
所以,在你的情况下:
function remove() {
var name=... ,
age = ...;
document.location.href = "something.jsp?name=" + name + "&age=" + age;
}
答案 2 :(得分:3)
只需致电
window.location=myURL;
在您的函数中