<link href="~/Content/magnify/jquery.magnify.css" rel="stylesheet" />
<script src="~/Content/magnify/jquery.magnify.js"></script>
<script src="~/Scripts/jquery.js"></script>
默认结构
<div>
<a data-magnify="gallery" href="~/img/IMG_0844.JPG">
<img src="~/img/IMG_0844.JPG" style="width:100px;height:100px;">
</a>
<a data-magnify="gallery" href="~/img/IMG_0844.JPG">
<img src="~/img/IMG_0844.JPG" style="width:100px;height:100px;">
</a>
</div>
简洁结构
@*data-src属性(大图地址),src属性(缩略图地址)*@
<div>
<img data-magnify='gallery'
data-src="/img/IMG_0844.JPG"
src="~/img/IMG_0844.JPG"
alt="点击放大"
style="width:100px;height:100px;">
</div>