JSON API HREF 问题

JSON Issue with API HREF

所以我试图让 href 代码成为一个可点击的按钮。到目前为止,我只是想把它变成 link!

这是代码

$("table").append("<tbody><tr><td>"+title+"</td><td><a href='&quot;+href+&quot;'></a></td></tr></tbody>");

JSON 拉回 Href link,我想要的只是有一个显示 link 的表格按钮,并使用 [=25] 重定向页面=] 来自 json.

山姆

你需要做两件事:

  1. 创建按钮元素
  2. 附加一个重定向页面的点击事件
  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");
  });