zoukankan      html  css  js  c++  java
  • MVC 创建带图片的<A></A>标签

                        <a href="@Url.Action("Detail", "Product", new { messageId = item.message.MessageId })" class="js-fancybox">
                                                @{
                                                    if (item.Attachment.Count > 0)
                                                    {
                                                        <img  src= "@item.Attachment[0].Parth" alt="@item.message.MessageTitle"/>
                                                    }
                                                    else
                                                    {
                                                        <img src="#" alt="@item.message.MessageTitle" />
                                                    }
                                            }
                                         </a>

    <a href="@Url.Action("CutImg","ListenMedia", new { item, id = ViewBag.id })">
    <img id="@item" src="@item" width="200" height="100" />
    </a> 

  • 相关阅读:
    Cookie和Seesion
    Forms组件
    分页器组件
    关于Django的Ajax操作
    Oracle常用数据库表操作
    redis的缓存穿透 缓存并发 缓存失效
    Struts2的拦截器
    Struts2的各种标签库
    Struts2基础知识
    Java常用数据结构和算法
  • 原文地址:https://www.cnblogs.com/520cc/p/3229352.html
Copyright © 2011-2022 走看看