给多个链接赋id值

来源:百度文库 编辑:神马文学网 时间:2024/04/28 06:25:21
$(document).ready(function(){
$("div.chapter a").each(function(index){
$(this).attr({
'rel':'external','id':'wikilink-'+index
});
});
});