gpt4 book ai didi

javascript - 选择器 : Get the data attribute of selected option

转载 作者:行者123 更新时间:2023-11-29 11:00:01 25 4
gpt4 key购买 nike

我很难将数据属性设置为 bootstrap selectpicker 上的选择选项。

我试过:

$('.selectpicker').on('changed.bs.select', function (e) {
var selected = e.target.value;
console.log("value : ", selected ); // gives selected value
console.log("data attribute: ", $(e.target).data("price"));
});

data 属性总是返回undefined

我在这里做错了什么?

最佳答案

这有效。

$('.selectpicker').on("changed.bs.select", function() {
var dataTypeAttribute = $('option:selected', this).attr("data-type");
});

关于javascript - 选择器 : Get the data attribute of selected option,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48951314/

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