gpt4 book ai didi

javascript - 无法检索 jquery 中所选选项的数据属性

转载 作者:行者123 更新时间:2023-11-28 18:31:33 25 4
gpt4 key购买 nike

下面是我的html Dom。我想获取选择选项的数据属性。

<table class="fanpage-table">
<tbody>
<tr>
<td>Blog System...</td>
<td>History......</td>
<td>
<select name="brand_dropdown">
<option data-brand-id="xxxthisxxxxxxx">PKB</option>
<option data-brand-id="xxxthisxxxxxxx">QKJ</option>
</select>
</td>
<td><i class="fa fa-check-square-o save-fan-page" data-fanpage-id="xxxxxxxxxx"></i></td>
</tr>
</tbody>
</table>

要获取data-brand-id,我的以下 JQuery 无法正常工作。

$(".save-fan-page").on("click",function() 
{
$(this).closest("tr").find("select[name='brand_dropdown']option:selected").data("brand-id");
}

最佳答案

$(".save-fan-page").on("click",function() {
$(this).closest("tr").find("select[name='brand_dropdown'] option:selected").data("brand-id");
}

请注意 select 的属性选择器和 option:selected 之间的空格我认为这就是问题所在。在您的情况下,它丢失

关于javascript - 无法检索 jquery 中所选选项的数据属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37897696/

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