我有一个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();" />
最佳答案
使用 window.location
:
function remove()
{
var name = ...;
var age = ...;
window.location = 'http://something.jsp?name=' + name + '&age=' + age;
}