A. 表单通常用于搜集用户信息。 B. form标签中使用method 属性指定提交表单数据的方法。 C. form标签中使用 action 属性指定表单处理程序的位置。 D. 表单中只能包含表单控件,而不能包含其他诸如图片之类的内容。
A. toUpperCase() B. indexOf() C. lastIndexOf() D. toLowerCase()
A. random() B. round () C. floor() D. ceil()
A. 加运算符(+) B. 点运算符(.) C. 乘运算符(*) D. 不能访问
A. 123 B. “abc”.length C. true D. new Date
A. 将字符串“myhouse.kitchen”赋值给变量x B. 将myhouse和kitchen的值相加之和赋值给变量x C. 将myhouse对象的kitchen属性赋值给变量x D. 将kitchen对象的myhouse属性赋值给变量x
A. document.write(Math.Pi) B. document.write(Math.pi) C. document.write(Math.PI) D. document.write(Date.Pi)
A. cool[5] B. cool(5) C. cool[4] D. cool(4)
A. obj.age=20; B. obj["age"]=20; C. obj."age"=20 D. obj={age:20}
A. function f() { }; B. var f=new Function("{ }"); C.var f=function() { }; D. f(){ };