Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将链接的标题值附加为链接的文本。我有这个代码:
<a href="#" title="Title value"></a>
...点击它后,我想要这样的东西:
<a href="#" title="Title value">Title value</a>
谢谢!
尝试这个:
$("a").click(function() { $(this).text($(this).prop("title")); });
这个
$('a').click(function() { $(this).text($(this).attr('title')); }
应该管用。
也许您想给您的<a>标签一个特殊的 ID,以便您可以引用它。
<a>