我试图在按下按钮后将复选框添加到项目列表(链接)中。
这个想法是我得到了链接列表,例如:
- 谷歌.com。
- 必应网
- 美国有线电视新闻网
等等,我在页面底部有按钮,一旦单击按钮,我想为每个链接添加复选框,但每个框 id 应该是它所附加的链接的序列号。
$("#links_remove").click(function(event) {
$('.links').after('<div><label> Check box to remove link: <input type="checkbox" class=" removebox" id="'+$(this).attr("id").split("_")[1]+'"></div>');
});
这是HTML
<a class="links" id="link_27" href="google.com">google.com</a>
但是当然 $(this) 选择器获取按钮的属性(“links_remove”)而不是当前链接的属性。
谢谢!