我试图用Jquery淡化表格中的所有图像。
以下似乎无法正常工作。可能是语法错误?
$(function() {
$('#myTable img').each(function(index) {
$(this).fadeOut('slow', function() {
// Animation complete.
});
});
});
答案 0 :(得分:1)
你只需要这样做:
$(function() {
$('#myTable img').fadeOut('slow', function() {
// Animation complete.
});
});
您不必使用each
方法。
如果您想使用each
方法,请执行以下操作
$(function() {
$('#myTable img').each(function(index,e) {
$(e).fadeOut('slow', function() {
// Animation complete.
});
});
});
e
将引用当前图像。