JQUERY 多个图像的点击事件

发布于 2024-09-10 09:06:06 字数 1432 浏览 4 评论 0原文

我创建一个图片库只是为了好玩,以扩展我的 JQUERY 入门知识。该画廊有一堆缩略图,单击这些缩略图时,将在图像查看器 div 的正下方显示一张大图像。此外,当缩略图处于活动状态(正在查看图像)时,缩略图会从 75 像素动画到 100 像素。

我已经通过将 id 插入所有图像,然后将其传递到每个图像锚点来手动工作。结构如下:

<div class="thumbnails" id="thumbnail_1">
    <a href="#" class="thumb_link" onclick='loadImage("#thumbnail_1","#image_1", "1");'>
    <img src="image-url-#.png" alt="Image 1"  border="0"  id="image_1" class="thumb_img"  /></a> 
  </div>

这对所有缩略图都重复。当用户点击时,图像被加载到

我的问题是我想让我的画廊尽可能动态。我希望有某种方法知道用户单击了哪个链接,而不必为每个缩略图创建 id。

我可以使用 $(".thumb_link").length; 获取链接数量,这将为我提供缩略图链接的数量。但我如何才能知道正在单击哪一个来显示与该缩略图相关的图像呢?

示例:用户单击第三个缩略图,显示 Thumb 3 的大图像。

loadImage 函数:

function loadImage(thumb, id, imgNum){  
    $(thumb).animate({width:100, height:100},500); 
            $(id).animate({width:100, height:100},500); 
            $(thumb + " a").animate({width:100, height:100},500);


            $("#image_viewer").html('<img src="imagesurl-'+ imgNum + '.jpg" border="0" alt="image: '+ imgNum+'" />');



    }

我希望能够通过每个标签分配给它的类加载图像,如下所示:

$(".thumbnails").eq(whatever_the_index_value_is).animate({width:100, height:100},500);

我需要知道单击的数组值这样我就可以访问这些信息。

--

我想这样做的原因之一是这样我可以找到特定的缩略图属性(图像 alt title src 等)并将它们插入到其他地方。

欢迎任何帮助!

I'm creating an image gallery just for fun to expand my introductory knowledge of JQUERY. The gallery has a bunch of thumbnails which, when clicked on, will show a large image just below in an image viewer div. In addition, when a thumbnail is active (image is being viewed) the thumbnail animates from 75px to 100px.

I've got it working manually by plugging in id's to all the images, and then passing that through each images anchor. Structure below:

<div class="thumbnails" id="thumbnail_1">
    <a href="#" class="thumb_link" onclick='loadImage("#thumbnail_1","#image_1", "1");'>
    <img src="image-url-#.png" alt="Image 1"  border="0"  id="image_1" class="thumb_img"  /></a> 
  </div>

This is repeated for all thumbnails. When a user clicks, the image gets loaded into
<div id="image_viewer"></div>

My problem is that I want to make my gallery as dynamic as possible. I want to have some way of knowing which link a user clicked on without having to create an id for every thumbnail.

I can get the number of links by using $(".thumb_link").length; which will give me the number of thumbnail links there are. But how can I tell which one is being clicked on in order to show the image relevant to that thumbnail?

Example: User clicks on 3rd thumbnail, show Large image for Thumb 3.

loadImage function:

function loadImage(thumb, id, imgNum){  
    $(thumb).animate({width:100, height:100},500); 
            $(id).animate({width:100, height:100},500); 
            $(thumb + " a").animate({width:100, height:100},500);


            $("#image_viewer").html('<img src="imagesurl-'+ imgNum + '.jpg" border="0" alt="image: '+ imgNum+'" />');



    }

I want to be able to load the image by the class that each tag has assigned to it like this:

$(".thumbnails").eq(whatever_the_index_value_is).animate({width:100, height:100},500);

I need to know the array value of the click so I can access this information.

--

One of the reasons I want to do this is so I can find the specific thumbnail attributes (image alt title src etc) and plug them in elsewhere.

Any help would be welcome!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只怪假的太真实 2024-09-17 09:06:06
 $(document).ready(function(){
   $(".thumb_link").click(function(event){
     event.preventDefault();
     check_image($(this));
   });
 });

上面代码中的 $(this) 是一个 JavaScript 对象,其中包含单击的任何图像。然后您可以查询它以获取您需要的任何信息。

 $(document).ready(function(){
   $(".thumb_link").click(function(event){
     event.preventDefault();
     check_image($(this));
   });
 });

The $(this) in the code above is a JavaScript object that contains whatever image was clicked on. You can then query it for whatever info you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文