词条 | OnMouseMove |
释义 | 函数原型: afx_msg void OnMouseMove( UINT nFlags, CPoint point ); 当鼠标移动时调用此函数 。 参数: nFlags 指示各种虚拟按键是否按下 ,此参数可以是任何下列值的组合: MK_CONTROL 当CTRL键按下时。 MK_LBUTTON 当鼠标左键按下时。 MK_MBUTTON 当鼠标中键按下时。 MK_RBUTTON 当鼠标右键按下时. MK_SHIFT 当SHIFT按下时。 point :鼠标的X,Y坐标:该坐标为 鼠标距离截获该消息的窗口左上角的位置 是一个相对位置而不是在屏幕像素上的绝对位置。 例如:当窗口的左上角坐标为(10,10)那么当鼠标在屏幕的(10,10)像素点的时候,OnMouseMove函数point值为(0,0)因为是相对窗口左上角的相对位置。 支持该事件的 HTML 标签:<a>, <address>, <area>, <b>, <bdo>, <big>, <blockquote>, <body>, <button>, <caption>, <cite>, <code>, <dd>, <dfn>, <div>, <dl>, <dt>, <em>, <fieldset>, <form>, <h1> to <h6>, <hr>, <i>, <img>, <input>, <kbd>, <label>, <legend>, <li>, <map>, <ol>, <p>, <pre>, <samp>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <table>, <tbody>, <td>, <textarea>, <tfoot>, <th>, <thead>, <tr>, <tt>, <ul>, <var> 支持该事件的 JavaScript 对象:onmousemove is, by default, not an event of any object, because mouse movement happens very frequently. 提示和注释注释:每当用户把鼠标移动一个像素,就会发生一个 mousemove 事件。这会耗费系统资源去处理所有这些 mousemove 事件。因此请审慎地使用该事件。(现在的电脑都能承受的住小小的mousemove 事件) 实例下面的例子中,当用户把鼠标移动到图像上时,将显示一个对话框: <img src="/i/eg_mouse2.jpg" alt="mouse" onmousemove="alert('您的鼠标刚才经过了图片!')" /> |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。