画像が空白の場合、jQuery を使用して画像の SRC を編集しようとしています。これが私の現在のコードです:
<script type="text/javascript">
$(document).ready(function() {
var $this = $(this),
img = $('img');
if img.attr("src", ""){
$this.attr("src", "default.gif");
}
});
</script>
動いていない。Chrome コンソールに表示される現在のエラーは次のとおりです:
Uncaught SyntaxError: Unexpected identifier
誰か助けてくれませんか? ありがとうございます。
- ヨルダン。