我尝试从这里读取src
图片: -
<div class="featured_preview">
<img src="ggat/wp-content/uploads/2015/03/11-192x236.jpg" width="300">
</div>
通过以下代码: -
jQuery(document).ready(function() {
jQuery(".open-popup-link").click(function () {
alert(jQuery(".featured_preview img").attr("src"););
});
});
为什么要告诉我这个错误: -
Uncaught SyntaxError: Unexpected token ILLEGAL
答案 0 :(得分:0)
改变这个:
alert(jQuery(".featured_preview img").attr("src");); // note the extra semi colon
人:
alert(jQuery(".featured_preview img").attr("src"));