|
4#
楼主 |
发表于 2014-11-7 15:50:59
|
只看该作者
本帖最后由 todaynew 于 2014-11-7 16:00 编辑
楼上二同志,及目前以下载示例的同志,请自行对示例做如下修改:
1、在View文件夹中找到Employee文件夹,双击Index.vbhtml文件。
2、在设计界面找到img标签,在该标签中增加一个class="small_img"属性。结果如下:
<img class="small_img" style="width:20px;height:20px;" alt="无照片" src="@Url.Action("GetImg", "Employee", New With {.id = currentItem.人员ID})" />
3、在<script type="text/javascript">脚本中增加的一段代码,结果如下:
<script type="text/javascript">
$(function () {
SetTable('地名列表', "地名ID");
/* 以下为新增的代码 */
$(".small_img").tooltip({
position: 'right',
content: '<img class="big_img" style="width:120px;height:160px;" alt="无照片" src="#"/>',
onShow: function () {
$(this).tooltip('tip').css({
backgroundColor: '#ddd',
borderColor: '#666'
});
$(".big_img").attr("src",$(this).attr('src'));
}
});
});
</script>
修改后的气泡显示大照片的效果如下:
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?注册
x
|