RoyalSlider:无法访问attribut数据

时间:2015-10-22 23:19:49

标签: jquery plugins royal-slider

我正在为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

有什么想法吗?

1 个答案:

答案 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>