单项选择题 如果今天是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);
单项选择题 在HTML中,使用JavaScript中的浏览器对象实现在当前窗口打开链接"http://www.baidu.com"的javascript语句是()。
单项选择题 析如下JavaScript代码,b的值为()。vara=1.5,b;b=parseInt(a);