0

現在の画像が表示され始めた場合、サムネイルリンクを無効にするにはどうすればよいですか?

<script type="text/javascript">
    $(function() {
        $(".image").click(function() {
            var image = $(this).attr("rel");
            $('#image').hide();
            $('#image').fadeIn('slow');
            $('#image').html('<img src="' + image + '"/>');

            return false;
        });
    });

<a href="#" rel="<%=  image.photo.url(:small) %>" class="image">
    <%= image_tag(image.photo.url(:thumb)) if image.photo %>
</a>
4

1 に答える 1

1

これを試して:

$(".image").click(function() {
    var image = $(this).attr("rel");

    if($('img', '#image').attr('src') == image) return false;

    $('#image').hide();
    $('#image').fadeIn('slow');
    $('#image').html('<img src="' + image + '"/>');

    return false;
});
于 2012-09-12T22:19:31.677 に答える