ZhiYeJianKang_PeiXun/Song.Site/Manage/Content/Scripts/Download.js
2025-02-20 15:41:53 +08:00

20 lines
265 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

$(
function()
{
setSize();
}
);
//设置图片列表中的文件大小带单位如kbmb
function setSize()
{
$(".diSize").each(
function()
{
var num=Number($(this).text());
var str=$().getSizeUnit(num);
$(this).html(str);
}
);
}