从img属性读取错误意外令牌ILLEGAL

时间:2015-03-28 12:35:36

标签: javascript jquery

我尝试从这里读取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

1 个答案:

答案 0 :(得分:0)

改变这个:

alert(jQuery(".featured_preview img").attr("src"‏);); // note the extra semi colon

人:

alert(jQuery(".featured_preview img").attr("src"‏));