欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

cognos 将时间默认设置为当月的1号 博客分类: BI cognosBIreport studioIBM 

程序员文章站 2024-03-14 00:01:28
...
拖动日期控件到页面
在工具箱里面拖动HTML项目到日期控件后面。在HTML写入:

<script>
var year=  new Date().getYear();
var month= new Date().getMonth()+1;
var day=new Date().getDate();
var time;
if(month>=10)
time=year +'-'+ month+'-'+01;
else
time=year +'-0'+ month+'-'+01;


//alert(time);
getFormWarpRequest().txtDateendDate.value=time;
</script>


日期控件里的时间即为当月1号。