Blog lập trình

Chia sẻ mọi kiến thức về lập trình

Add link vào title hàng loạt bằng jquery

<script>
jQuery(document).ready(function($){

var arr = [];// tạo mảng chưa tất cả các link của item
$(".aaaa a").each(function() {
   var href = $(this).attr('href');
     arr.push(href);
});

$(".aaaa span").each(function() {// chèn thẻ a vào tất cả item
   $(this).wrap("<a class='customlink'></a>");
});

$(".aaaa .customlink").each(function(index) {// chèn link từ màng arr và từng item đã thêm thẻ a
$(this).attr("href",arr[index] );
});

});
</script>
Share on Google Plus

About Blog chia sẻ kiến thức lập trình

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 nhận xét:

Đăng nhận xét