javascript或jquery获取点击图像的索引

javascript或jquery获取点击图像的索引

本文介绍了如何从datalist javascript或jquery获取点击图像的索引的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,



Hello,

<asp:DataList RepeatColumns="3" ID="repdetails"     runat="server">
                           <ItemTemplate>
                           <table><tr><td style="border:1px solid #bfbfbf; width:50px;">
                                <asp:ImageButton ID="imgbtnid" runat="server" Width="40"

                OnClientClick="return   imagepopup(this.src);" Height="40" ImageUrl='<%# Eval("ivtf_docs_id", "../Imagenew.ashx?styleid={0}")%>'/>
                           </td></tr></table>
                           </ItemTemplate>
                           </asp:DataList>





当页面显示在浏览器上时,我有DataList中的图像列表。现在我需要从DataList获取点击图像的索引。

如果我点击第一张图片,它应该得到索引0,如果它是第二张图像,索引应该是1等等。





When the page shows on browser, I have list of images in DataList. Now I need to get index of clicked image from DataList.
if I click first image, it should get index 0 , if it is second image, index should be 1 and etc..

function imagepopup(thmsubimg) {
                   // here how to get index of clicked image from datalist.
                  return false;
               }





需要帮助



Help needed

推荐答案


这篇关于如何从datalist javascript或jquery获取点击图像的索引的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 09:52