FF4需要点击jquery为什么?

时间:2011-04-07 21:16:18

标签: jquery firefox4

我真的希望有人知道答案。为什么FF4需要2次点击才能触发调整大小?同时播放香港专业教育学院时注意到,如果我在第二次点击时单击一个单独的图像,它会抓取应该在第一次点击/图像上应用的调整大小设置。它在FF3,safari,chrome方面很好,肯定是7和8。

$(document).ready(function(){

$("#slideShow a").click(function() {
var imgTitle = $(this).children('img').attr('title'); // Find the image title
$("#thecap").html(' ' + imgTitle + ' ');
$("#lgImage").attr('src', $(this).children('img').attr('rel'));
$( ".resizeme1" ).aeImageResize({ height: 372 });
});

});

1 个答案:

答案 0 :(得分:0)

您应该尝试阻止默认 a 操作

$(document).ready(function(){
    $("#slideShow a").click(function()
    {
        var $img = $(this).children('img'),
            imgTitle = $img.attr('title'); // Find the image title

        $('#thecap').
            text(' ' + imgTitle + ' ');

        $('#lgImage').
            attr('src', $img.attr('rel'));

        $('.resizeme1').
            aeImageResize({ 
                height: 372 
            });

        return false;
    });
});