gpt4 book ai didi

javascript - 使用 2 个数据属性定位 HTML 元素

转载 作者:行者123 更新时间:2023-11-30 08:39:34 24 4
gpt4 key购买 nike

我在定位具有 2 个数据元素的 div 时遇到问题。这是代码片段:

    <button data-button="inventoryb" data-name="overview" style="width:120px">Overview</button>
<button data-button="inventoryb" data-name="schedule" style="width:120px">Schedule</button>
<button data-button="inventoryb" data-name="plan" style="width:120px">Inventory Plan</button>
<button data-button="inventoryb" data-name="atl" style="width:120px">Inventory ATL</button>

您能帮我使用 JQuery 定位一个按钮吗?这个我试过了

$("button[data-button='inventoryb']").find("button[data-name='overview']").click();

但是好像不行。

预先感谢您,如果我发布了重复的问题,我深表歉意。我找不到与我的问题类似的问题。

编辑:我想在搜索中同时拥有两个 data- 属性,因为在我的另一个代码中,有一个类似的结构:

    <button data-button="taskb" data-name="overview" style="width:120px">Overview</button>
<button data-button="taskb" data-name="list" style="width:120px">Schedule</button>

因此仅通过数据名称搜索不足以定位到正确的按钮

最佳答案

$("button[data-button=inventoryb][data-name=overview]").click()

关于javascript - 使用 2 个数据属性定位 HTML 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27915562/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com