在JavaScript中,可以使用var today = new Date( );这样的方法获得系统当前时间,假设系统时间是2007-7-2 星期一,则today.getDay( ) 的返回值是()。
A1
B0
C7
D星期一
正确答案
答案解析
相似试题
(单选题)
在JavaScript中var name = new Array(12)是表示()。
(单选题)
Javascript中, 以下代码运行后变量y的值是:() var x = [‘abcde’ , 123456]; var y = typeof typeof x[1];
(单选题)
Javascript中,以下代码运行后变量y的值是:() var x = [typeof x, typeof y][1]; var y = typeof typeof x;
(单选题)
在Javascript中,可以使用Date对象的()方法返回一个月中的每一天。
(单选题)
如果今天是2006年5月14日,分析下列JavaScript代码运行后,在网页上显示()。 var now = new Date( ); var year = now.getYear( ); var month = now.getMonth( ); var date = now.getDate( ); document.write(year+" "+month+" "+date);
(单选题)
假定今天是2006年4月1日星期六,请问下列JavaScript代码在页面上的输出结果是()。 var time=new Date( ); document.write(time.getDate( ));
(单选题)
分析下面的JavaScript代码段,输出结果是()。var a=15.59;document.write(Math.round(a));
(单选题)
分析下面的JavaScript代码段: var mystring="I am a student"; a=mystring.indexOf("am"); document.write(a); 输出结果是()。
(单选题)
在HTML中嵌入JavaScript,使用的标记是:()