美文网首页
this 讲解

this 讲解

作者: 邱帅123 | 来源:发表于2017-10-10 20:16 被阅读0次

    this

    默认指代 window,在onclick函数里指代当前点击对象。

    for(var i=0,i<obj.length,i++){
      obj[i].onclick = function(){
          this.style.backgroundColor = red
      }
    }
    

    阻止事件冒泡
    e.stopPropagation() 非IE下
    阻止浏览器默认行为
    e.prevertDefault() 非IE下

    相关文章

      网友评论

          本文标题:this 讲解

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