我正在使用UberGallery,但不知道从类“ cboxPhoto”中获取“ src”:

<div id="cboxLoadedContent" style="width: 500px; overflow: auto; height: 333px;"><img class="cboxPhoto" src="test.jpg" style="cursor: pointer; width: 500px; height: 333px; float: none;"></div>


我正在尝试,但没有用。

var x = $('cboxPhoto').attr('src');


有任何想法吗?

最佳答案

用您的小提琴更新(删除了php)


使用点引用类选择器$('.cboxPhoto')
确保您正在加载jQuery。
为演示添加了alert(x)




$(document).ready(function() {
  $("a").click(function() {
    //var ficken = $(this).attr('href');
    var x = $('.cboxPhoto').attr('src');
    alert(x);
  });
});

#cboxLoadedContent {
  width: 500px;
  overflow: auto;
  height: 333px;
}

.cboxPhoto {
  cursor: pointer;
  width: 500px;
  height: 333px;
  float: none;
}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a href="">click me</a>
<div id="cboxLoadedContent">
  <img class="cboxPhoto" src="test.jpg">
</div>

10-05 20:29