HTML标题一个[href] jQuery

时间:2015-02-14 05:32:29

标签: javascript jquery html css safari-extension

我正在创建一个Safari扩展程序,当鼠标悬停时,它会将网站链接显示为标题。

到目前为止我已经这样做了

$("a[href]").mouseover(function() { this.html("<title=>"); });

基本上我想要当用户将鼠标放在链接上时显示链接是什么。

例如,如果用户将鼠标放在“英国 - Adob​​e”链接上,则应该是www.adobe.com/au/

enter image description here

这是inspect元素。 enter image description here

我希望这是有道理的。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。在这里。

$("a[href]").mouseover(function() { $(this).attr("title",this); });