js如何给报表加载背景图片,图片存在服务器的某个文件夹下,图片会变,图片名固定,并且页面刷新是重新加载图片
Form113.frm
=============
参考JS 实现动态选择报表背景色-https://help.fanruan.com/finereport/doc-view-2947.html
加载图片,js就改成
setTimeout(function() {
$('.content-container').css({'background': 'url(/webroot/help/picture/icon_top1-18.png)no-repeat','background-size':'100% 100%'});
}, 1000);
========