所以我试图让href代码成为可点击的按钮。到目前为止,我只是想把它作为一个链接!
继承代码
$("table").append("<tbody><tr><td>"+title+"</td><td><a href='"+href+"'></a></td></tr></tbody>");
JSON撤回了一个Href
链接,我只想要一个表格link
的表格按钮,并使用json中的链接重定向页面。
萨姆
答案 0 :(得分:0)
你需要做两件事:
var button = "<button class='redirect-button' data-url='"+href+"'>Link</button>";
$("table").append("<tbody><tr><td>"+title+"</td><td>"+button+"</td></tr></tbody>");
$("table").find(".redirect-button").click(function(){
location.href = $(this).attr("data-url");
});