gpt4 book ai didi

javascript - 如何使用 jQuery 使链接标题与其 URL 相同?

转载 作者:行者123 更新时间:2023-11-30 13:44:02 25 4
gpt4 key购买 nike

我的目标是让每个外部链接的标题都等于它的 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)

最佳答案

$('a').each(function() {
var href = $(this).attr('href');
if(this.hostname && this.hostname !== location.hostname) {
$(this).removeAttr('target')
.attr('rel', 'external')
.attr('title', href)
.click(function() {
window.open(href);
return false;
});
}
});

关于javascript - 如何使用 jQuery 使链接标题与其 URL 相同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/484577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com