单项选择题
ES中function fun1(e){}函数内部,阻止事件冒泡的是()
A.e.cancelBubble()B.e.stopPropagation();C.e.targetD.e.pageX
单项选择题 function Person(){}var p1 =new Person();console.log(p1.__proto__==Person.prototype);以上代码执行结果为? ()
单项选择题 ['a', 'b', 'c'].fill(7)的返回结果是 ()
单项选择题 function Foo(){getName =function(){alert(1)};return this;},其中this指向()