如何在引导轮播中找到(检测)数据属性的值。
例如
<div class="item" data-slide-number="2" data-nexttopic="T0024">
<div class="topic-content">
我需要检索nexttopic的值
我会按照
的方式思考var topicValue = $(e.relatedTarget).find("[data-nexttopic]").val();
答案 0 :(得分:0)
你可以用两种方式做到这一点
1)使用数据属性
var topicValue = $(e.relatedTarget).data("nexttopic");
2)使用普通属性
var topicValue = $(e.relatedTarget).attr("data-nexttopic");
答案 1 :(得分:0)
试试这个,
var topicValue = $(e.relatedTarget).attr('data-nexttopic');