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.
我想知道如何通过标题选择一个元素,然后更改该标题。
例如,假设一个元素的标题为“Hello”,我想定位该特定标题“Hello”并在页面加载后将其更改为“goodbye”。
任何人都可以帮助我如何在 Jquery 中编写这个吗?
使用选择器:
$('*[title="Hello"]');
可能是这样的:
$(function(){ $('[title="Hello"]').attr('title','Good Bye'); });