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 能加我好友吗
展开
 我来答
scheshan
推荐于2016-01-21 · TA获得超过1789个赞
知道小有建树答主
回答量:958
采纳率:0%
帮助的人:1262万
展开全部
因为你的img是在repeater内,生成ID是不固定的.所以推荐这么做:

首先给table定义一个id为"tbContent"

jquery代码块:
$(function(){
$("#tbContent img").click(function(){
$("input:image").attr("src",$(this).attr("src"));
});
});
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lifei6671
2011-08-14 · TA获得超过9226个赞
知道大有可为答主
回答量:3899
采纳率:25%
帮助的人:2751万
展开全部
$().ready(function(){
$('#Image1').click(function(){
var url=$(this).attr('src');
$('input[type=image]').attr('src',url);});
})
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式