zoukankan      html  css  js  c++  java
  • srcElement,fromElement,toElement不同点

    srcElement,fromElement,toElement

    这个三个不是函数,是属性.

    srcElement 产生事件的节点(DHTML对象).当当前事件有移动操作时,如onmouseover,onmouseout等,可以获取产生这些事件的节点.如:even.srcElement.TagName,even.srcElement.nodeName...

    fromElement、toElement 表示移动事件的两个端点
    如: 
    <DIV   onmouseover=over(this)   onmouseout=out(this)   style="200px;height:100px;background-color:red">  
      <INPUT   TYPE="text"   NAME="">  
      <INPUT   TYPE="text"   NAME="">  
      </DIV>  
      <script>  
      function   over(o)  
      {  
          if   (!(o.contains(window.event.fromElement)))  
          {  
                alert("Enter");  
          }   
      }  
       
      function   out(o)  
      {  
          if   (!(o.contains(window.event.toElement)))   
          {  
                alert("Out   Now");  
          }  
      }  
      </script>

  • 相关阅读:
    Maximal Square
    Count Complete Tree Nodes
    Rectangle Area
    Implement Stack using Queues
    Basic Calculator
    Invert Binary Tree
    Summary Ranges
    Basic Calculator II
    Majority Element II
    Kth Smallest Element in a BST
  • 原文地址:https://www.cnblogs.com/Godblessyou/p/1017289.html
Copyright © 2011-2022 走看看