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.
嗨,这里是我想用 jquery 选择但无法选择的元素的 xpath,仅在第一次出现时。请帮我。XPATH ::
“/html/body/table/tbody/tr/td[2]/table”
提前致谢。
$("table table");
或更具体:
$("table > tbody > tr > td:th-child(2) > table");
不过最好有身份证。
您可能会发现给表格一个 ID 来选择更容易,但其他类似以下混乱的东西应该可以工作。
$table = $("html body table tbody tr td:eq(2) table").first();