js中特有语句-with

时间:2022-07-10 06:58:57

<script type="text/javascript">

/*
*为了简化对象调用内容的书写。
*可以用js中的特有语句with来完成。
*格式
*with{
*
* 在该区域中可以直接使用指定的对象的内容,不需要写对象。
*}
*/
var date = new Date();
with(date){
var year = date.getFullYear();
var month = date.getMonth()+1;
var day = date.getDate();
//var week = getWeek(date.getDay());

document.write(year+"--"+month+"--"+day+"<br/>");

}
</script>