所以我了解到我可以使用按钮将某人链接到另一个页面,如下所示:
$("#something").append("<br><center><input type='button' value='Go' onclick='location.href=\"http://www.google.com\"'></center>");
但是假设我想使用一个变量作为地址,我不知道该怎么做。我想做的是这样的:
var url = "http://www.google.com";
$("#something").append("<br><center><input type='button' value='Go' onclick='location.href=url'></center>");
有人可以纠正我的错误吗?谢谢