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.
我有这个元素,跨度包含一个无法删除的点击事件。我想在不触及 span 元素的情况下更改 A 元素中的文本。
<a href="#"> <span>X</span> Show location </a>
在单独的 SPAN 元素中添加要更改的文本并进行更改。直接访问 A-Tag,您将始终需要关心 SPAN-Tag。
$('a').contents()[1].nodeValue="new value";