我想创建td
和link image
克隆td:nth-child(2)
链接a.link_topic_title
我已经制作了这个脚本,但链接只克隆第一行的链接
$(document).ready(function () {
$('#preview_active').change(function () {
if ($(this).is(':checked')) {
var url_thread = $('.link_topic_title').attr("href");
var url_tooltip = "http://example.com" + url_thread
$(".zebra thead tr th:first-child").attr('colspan', 4);
$('.zebra tbody tr td:nth-child(2)').after('<td class="span1 icon"><a href="' + url_thread + '"><img src="http://icons.iconarchive.com/icons/visualpharm/must-have/256/Preview-icon.png" height="30px" width="25px" rel="tooltip" data-original-title="' + url_tooltip + '"/></a></td>');
$('.zebra tbody tr td:nth-child(3) a img[rel=tooltip]').tooltip();
} else {
$(".zebra thead tr th:first-child").attr('colspan', 3);
$('.zebra tbody tr td:nth-child(3)').remove();
}
});
});
jsfiddle:http: //jsfiddle.net/5Vpra/2/
如何将列上的列表链接克隆到另一列(创建 td)?
更新
我已经尝试使用每个,我设法拿起所有的链接,但没有成功克隆到每个 td,
$(document).ready(function () {
$('#preview_active').change(function () {
if ($(this).is(':checked')) {
classes = {};
$('.link_topic_title').each(function() {
$($(this).attr("href").split(' ')).each(function() {
if (this !== '') {
classes[this] = this;
}
});
});
tds = '';
$(".zebra thead tr th:first-child").attr('colspan', 4);
$('.zebra tbody tr td:nth-child(2)').after('<td class="span1 icon"></td>');
for (class_name in classes) {
var url_tooltip = "http://example.com" + class_name
tds += $('.zebra tbody tr td:nth-child(3)').append('<a href="' + class_name + '"><img src="http://icons.iconarchive.com/icons/visualpharm/must-have/256/Preview-icon.png" height="30px" width="25px" rel="tooltip" data-original-title="' + url_tooltip + '"/></a>');
$('.zebra tbody tr td:nth-child(3) a img[rel=tooltip]').tooltip();
};
} else {
$(".zebra thead tr th:first-child").attr('colspan', 3);
$('.zebra tbody tr td:nth-child(3)').remove();
}
});
});
jsfiddle:http: //jsfiddle.net/5Vpra/3/