我有:
function dosomething(data) {
alert($(this).attr('class'))
$(this).children('img').attr('title', data)
}
$('.test').bind('mouseover', function() {
$.get('/inc/ajax-function.asp?action=check', dosomething);
})
现在这显然行不通。我想做的是:
当调用 .get 时,将 rresult 放入数据(这有效)并将结果放在 img 的标题中,该标题是您鼠标悬停的链接的子项。如何获取函数的 $(this) 值?
<a class='test' href='book.asp><img src='image.gif' title='' /></a>
感谢您提供2个很好的解决方案。我不知道在这种情况下使用哪个“更好”更快,更“标准”。