vue面试题总结记录(1)

为了未来几周的面试,忙忙碌碌的总结了这么一些面试题。

1.js的兼容问题

a event事件问题: var oEvent=ev||window.event;

ev 是谷歌火狐的写法,IE9以上支持,往下不支持;

event   谷歌和IE支持,火狐不支持;

b.获取元素的非行间样式:

function getStyle(object,ocss){

    if(object.currentstyle){

    return obj.currentstyle[ocss]

}else{

    return getComputedstyle(object,null)[ocss]

}

}

c  事件冒泡

阻止事件冒泡方法

IE e.cancelBubble=true;

非IE e.stopPropagation;

d.获取Dom节点的父节点,子节点的方式不同;

parentNode,parentNode.childrenNodes;

IE  parentElement  parentElement.children;

你可能感兴趣的:(vue面试题总结记录(1))