我的目标是使每个外部链接的标题与其href属性相等。
我的问题是,如何使title
变量可用于attr
函数?
$( a ).filter(function() {
var title= $(this).attr( href );
return this.hostname && this.hostname !== location.hostname;
})
.removeAttr( target )
.attr( rel , external )
.attr( title , title);
$( a[rel="external"] ).click( function() {
window.open( $(this).attr( href ) );
return false;
});
我想我可能把它搞反了,答案在attr(key, fn)中。