美文网首页
js常见兼容

js常见兼容

作者: 你好爱人i | 来源:发表于2018-08-04 20:22 被阅读0次

    1,滚动条

    document.documentElement.scrollTop || document.body.scrollTop

    2.事件对象兼容

    event || window.event

    3.阻止事件冒泡

    event.stopPropagation || event.cancleBubble

    4.阻止默认行为

    event.preventDefautl || event.returnValue

    5.事件目标对象兼容

    event || event.srcElement

    6.事件监听兼容

    attactEvent || addEventListener

    相关文章

      网友评论

          本文标题:js常见兼容

          本文链接:https://www.haomeiwen.com/subject/nkxyvftx.html