CC老师:jquery 获取img url参数 并传给另外一个img 怎么弄啊
<body><formid="form1"runat="server"><divclass="ListPhoto_PhotoList_Middle"><tableclas...
<body>
<form id="form1" runat="server">
<div class="ListPhoto_PhotoList_Middle">
<table class="Table_PhotoList"><tr>
<asp:Repeater ID="DataList_PhotoList" runat="server">
<ItemTemplate>
<td valign="middle">
<img ID="Image1" alt="" runat="server" style=" width:136px;" src='<%#"MyPhoto/" +Eval("Name")%>' onclick="#" /></td>
</ItemTemplate>
</asp:Repeater></tr></table>
</div>
<div id="ListPhoto_Image">
<input type="image" id="Show_ListPhoto_Image" src="???????" />
</div>
</form>
</body>
我想单击rpt里的一张图片
<img ID="Image1" alt="" runat="server" style=" width:136px;" src='<%#"MyPhoto/" +Eval("Name")%>' onclick="#" />
然后被单击的图片就在 <input type="image" src="???????" />这里显示
我QQ137384467 能加我好友吗 展开
<form id="form1" runat="server">
<div class="ListPhoto_PhotoList_Middle">
<table class="Table_PhotoList"><tr>
<asp:Repeater ID="DataList_PhotoList" runat="server">
<ItemTemplate>
<td valign="middle">
<img ID="Image1" alt="" runat="server" style=" width:136px;" src='<%#"MyPhoto/" +Eval("Name")%>' onclick="#" /></td>
</ItemTemplate>
</asp:Repeater></tr></table>
</div>
<div id="ListPhoto_Image">
<input type="image" id="Show_ListPhoto_Image" src="???????" />
</div>
</form>
</body>
我想单击rpt里的一张图片
<img ID="Image1" alt="" runat="server" style=" width:136px;" src='<%#"MyPhoto/" +Eval("Name")%>' onclick="#" />
然后被单击的图片就在 <input type="image" src="???????" />这里显示
我QQ137384467 能加我好友吗 展开
2个回答
展开全部
因为你的img是在repeater内,生成ID是不固定的.所以推荐这么做:
首先给table定义一个id为"tbContent"
jquery代码块:
$(function(){
$("#tbContent img").click(function(){
$("input:image").attr("src",$(this).attr("src"));
});
});
首先给table定义一个id为"tbContent"
jquery代码块:
$(function(){
$("#tbContent img").click(function(){
$("input:image").attr("src",$(this).attr("src"));
});
});
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询