将日期控件白色背景改成蓝色,用js怎么实现?
直接使用这个css就可以
决策报表样式.rar
这样?
setTimeout(function(){
//$('.fr-trigger-texteditor').css("background-color","red")//批量改
$("div[widgetname=A]").find("input").css("background-color","red")//a为控件名,大写
},100)
const style = document.createElement('style');
style.innerText = `.fr-datepicker table { background-color: blue !important;}`;
document.head.appendChild(style);