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.
//td[@class='Bu']/following::td[@class='Bu']
或者
//td[@class='Bu'][2]
使用 XPath 时两者的结果相同,那么如何将它们更改/转换为 CSS?
如果第二个td.Bu是跟随兄弟(意味着他们共享同一个父级),或者他们的父级是兄弟姐妹并且只有两个,则只能使用 CSS 选择器执行此操作:
td.Bu
td.Bu ~ td.Bu
如果它们完全不相关,那么使用 CSS 是不可能的。