Topic: 高手进来讨论下:怎么给 <html:img>标签传参数? (内附详细代码) |
Print this page |
1.高手进来讨论下:怎么给 <html:img>标签传参数? (内附详细代码) | Copy to clipboard |
Posted by: uniquejava Posted on: 2005-10-09 21:26 怎么给 <html:img>标签传参数? 错误的写法: <html:img src="xxx.jsp?aaaa="<%=pic.getPicId()%>"/>出错,疑惑不解? 正确的写法: <% String pic_id = pic.getPicId(); pageContext.setAttribute("pic_id",pic_id); %> <html:img src="xxx.jsp" paramId="aaaa" paramName="pic_id"/> 正确,代码这长,不知道有没有简单的方法(必须用struts标签) |
2.Re:高手进来讨论下:怎么给 <html:img>标签传参数? (内附详细代码) [Re: uniquejava] | Copy to clipboard |
Posted by: uniquejava Posted on: 2005-10-09 22:51 这样写是对的 <img src="xxx.jsp?aaaa="<%=pic.getPicId()%>"> 这样写就不对了: <html:img src="xxx.jsp?aaaa="<%=pic.getPicId()%>"/> 不知道除了一楼所列方法,还有没有更好的方法。。 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |