ZhiYeJianKang_PeiXun/Song.Site/Manage/Content/Scripts/Picture.js

28 lines
566 B
JavaScript
Raw Normal View History

2025-02-20 15:41:53 +08:00
$(
function()
{
_openPicEditEvent();
}
);
//设置图片列表中的文件大小带单位如kbmb
function setSize()
{
$(".piSize").each(
function()
{
var num=Number($(this).text());
var str=$().getSizeUnit(num);
$(this).html(str);
}
);
}
function _openPicEditEvent()
{
$(".picShow").click(function(){
var id=$(this).attr("imgid");
var para=location.href.substring(location.href.indexOf("?"));
var path="Content/Picture_Edit.aspx"+para+"&id="+id;
new top.PageBox("内容管理---图片编辑",path,800,600).Open();
});
}