单项选择题
A.typeof arrB.arr has ArrayC.arr instanceof ArrayD.以上都不对
设置隐藏和显示oDiv元素的是()A.oDiv.style.show="block"B.oDiv.style....
单项选择题设置隐藏和显示oDiv元素的是()
A.oDiv.style.show="block"B.oDiv.style.show="none"C.oDiv.style.display="block"D.oDiv.style.display="none"
ES中function fun1(e){}函数内部,阻止事件冒泡的是()A.e.cancelBubble()B...
单项选择题ES中function fun1(e){}函数内部,阻止事件冒泡的是()
A.e.cancelBubble()B.e.stopPropagation();C.e.targetD.e.pageX
function Person(){}var p1 =new Person();console.log(p1....
function Person(){}var p1 =new Person();console.log(p1.__proto__==Person.prototype);以上代码执行结果为? ()
A.TRUEB.FALSEC.PersonD.Object