在JavaScript中,访问对象或方法时采用的指示符为()
点击查看答案
参考答案:
A
JavaScript 对象以属性和方法的形式存放数据,且使用圆点指示符实现对对象属性和方法的访问。比如要引用 Document对象的 Write 方法,格式为: Document.Write"abcd" 。