如何在jsp中动态插入alt标签
我想在以下 jsp 代码行中插入 alt 标记,如何完成此操作?
<li class="carousel-promo">
<div>
<c:choose>
<c:when test="${mediaType eq 3}">
<dsp:valueof param="media.data" valueishtml="true"/>
</c:when>
<c:when test="${mediaType eq 1}">
<dsp:getvalueof var="imgURL" param="media.url" />
<img src='<dsp:valueof value="${imgURL}"/>' /> <br />
</c:when>
</c:choose>
</div>
</li>
I want to insert an alt tag in the following lines of jsp code how do I accomplish this?
<li class="carousel-promo">
<div>
<c:choose>
<c:when test="${mediaType eq 3}">
<dsp:valueof param="media.data" valueishtml="true"/>
</c:when>
<c:when test="${mediaType eq 1}">
<dsp:getvalueof var="imgURL" param="media.url" />
<img src='<dsp:valueof value="${imgURL}"/>' /> <br />
</c:when>
</c:choose>
</div>
</li>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您的意思是向 img 标签添加 alt 属性:
在尝试设置 alt 属性时只需执行类似的操作。此示例使用 media.description 作为媒体对象上的属性名称来设置通过 dsp 标签获取的变量的值。
希望有帮助......
im assuming you meant adding an alt attribute to the img-tag:
just do something like this when trying to set the alt attribute. this example sets the value of the variable fetched via the dsp-tag using media.description as a name of the property on your media object.
hope that helped....