A. JavaScript的语法和Java语言的语法非常类似 B. JavaScript中的变量是弱变量类型,即变量的类型根据它被赋值的类型改变 C. JavaScript对大小写是敏感的 D. 服务器对JavaScript脚本程序进行编译、运行
A. <body></body> B. <javascript></javascript> C. <script></script> D. <form></form>
A. var if=10 B. var larg=10 C. var arg1=10.0 D. var arg1=10
A. 间隔1秒后,fun()函数被调用1次 B. 间隔1000秒后,fun()函数被调用1次 C. 间隔1秒后,fun()函数被调用1000次 D. 间隔1毫秒后,fun()函数被调用1000次
A. title B. status C. toolbar D. location
A. forward() B. back () C. go(1) D. go(2)
A. window.status="这是状态栏" B. window.status("这是状态栏") C. status("这是状态栏") D. status("这是状态栏",“”)
A. window.open("window2.html","new") B. window.open("window2.html","new","") C. window.open("window2.html") D. window.open("new","window2.html")
A. f1() B. f2() C. g1() D. g2()