如果没有选择其他图像,如何插入第一张图像

时间:2011-01-03 15:16:58

标签: javascript jquery

我试图找出一种方法来插入jquery图库的第一个图像,一旦它基本上加载。

我到处搜索,似乎找不到任何东西。我已经粘贴了目前为止工作的代码。我想我必须提出类似的内容:

$(function() {
   $(".image").click(function() {
      var image = $(this).attr("rel");
      var title = $(this).attr("alt");
      var description = $(this).attr("content");
      $('#gallery').hide();
      $('#gallery').fadeIn('slow');
      $('#image').html('<img src="' + image + '"/>');

      return false;
   });
});

1 个答案:

答案 0 :(得分:0)

使用.append

例如

$(".image").click(function() {
    var img = $('<img/>');
    img.attr("src", $(this).attr("rel") );

    var title = $(this).attr("alt");
    var description = $(this).attr("content");

    $("#gallery").append( img );
    $('#gallery').fadeIn('slow');
    return false;
});

一旦点击各自的链接,这也会附加其他图像。