我有几张图片,比如
<img src="unstarred.png" class="unstarred-button" id="unstarred-1" />
<img src="unstarred.png" class="unstarred-button" id="unstarred-2" />
<img src="unstarred.png" class="unstarred-button" id="unstarred-3" />
<img src="unstarred.png" class="unstarred-button" id="unstarred-4" />
然后我绑定这个函数:
$('.unstarred-button').click(function() {
id = $(this).attr('id').replace(/^unstarred-/, '');
url = '/star.php?id=' + id;
$.ajax({
type: 'GET',
url: url
}).done(function() {
// What should be put here?
});
});
现在我不知道如何前进。我想src
在调用中更改单击图像的属性done()
,但 $(this) 不会返回确定单击的图像$(this).attr('id')
,undefined
根据alert()
.
有人可以帮我吗?