基本上,我必须使用 jquery 更改页面的一部分,但是考虑到页面的格式,我对选择器链必须是什么感到非常困惑。
<span class="foo1">
<span class="intro"><span class="bar">data I need to change</span></1>
<span>...</span>
<div class="body">This is the only place I can write code on the page</div>
</span>
如何更改使用 jquery 时需要更改的数据?显然,我没有服务器访问权限。
代码必须以 $(this) 开头,因为 foo 中的 1 总是一个随机数,我猜不出来。根据代码所在的帖子,该代码必须适用于所有帖子。
如果我可以使用正常的嵌套,我会的。
代码必须类似于
$(this).sibling('.intro').child('.bar').text('bar');