现场演示
$(function() {
$(".fullProfile").each(function() {
var href= $(this).attr("href");
var link = $('<a name="'+href+'" class="letter">'+href+'</a>');
$(this).closest("ul").replaceWith(link);
});
});
更新
处理您的其他链接以指向新的锚点:
现场演示
$(function() {
$(".fullProfile").each(function() {
var href = $(this).attr("href");
var link = $('<a name="'+href+'" class="letter">'+href+'</a>');
$(this).closest("ul").replaceWith(link);
});
$(".cwyFellowName a").each(function() {
var href = $(this).attr("href");
if (href.length==1) $(this).attr("href","#"+href);
});
});
更新
在这里我们处理其余没有自己字母的链接
$(function() {
$(".fullProfile").each(function() {
var href = $(this).attr("href");
var link = $('<a name="'+href+'" class="letter">'+href+'</a>');
$(this).closest("ul").replaceWith(link);
});
$(".cwyFellowName a").each(function() {
var href = $(this).attr("href");
if (href.length==1) $(this).attr("href","#"+href);
else if (href=="link") {
var txt = $(this).text();
if (txt.length==1) {
$(this).attr("href","#"+txt);
var nextDiv = $(this).parent().nextAll(".cwyFellowLinks:first");
nextDiv.find("a").attr("name",txt).text(txt);
}
}
});
});