我正在为RoyalSlider使用以下包装器
<a class="rsContent white" href="#">
<img class="rsImg" src="#" data-color="white" width="2560" height="1440">
</a>
我想检查第一个rsContent的data-attribut的值,所以我使用以下代码
$('.rsContent').eq(0);
或$('.rsContent').first();
到目前为止工作正常但是当我尝试
时 $('.rsContent').eq(0).data('color');
或$('.rsContent').eq(0).attr('class');
Jquery返回
undefined
有什么想法吗?
答案 0 :(得分:0)
请检查日志..
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
</head>
<body>
<a class="rsContent white" href="#">
<img class="rsImg" src="#" data-color="white" width="100" height="100">
</a>
<script>
console.log($('.rsContent').first().attr("class"));
</script>
</body>
</html>