某网页中有一个表单对象,其名称是mainForm,该表单对象的第一个元素是按钮,其名称是myButton,引用该按钮对象的方法是( )。
A. document.forms[0].myButton
B. document.mainForm.myButton
C. document.forms[0].element[0]
D. 以上都可以
document.getElementsByTagName()方法是根据 ()来获取一组相同类型的元素。
A. name
B. 标记的id
C. 标记的name属性
D. 标记名称
Date对象的方法中能够根据本地时间格式把Date对象转换为字符串的是()。
A. getDate()
B. toString()
C. toLocaleString()
D. toLocaleDateString()
在Javascript中,对于浏览器对象的层次关系理解正确的是()
A. window对象不是所有页面内容的根对象
B. document对象包含location对象和history对象
C. location对象包含history
D. document对象包含form对象