Page History
Callback handler to receive onmouseoout events.onmouseoout イベントを受信するコールバック・ハンドラー
| Info |
|---|
| This handler is not available for このハンドラーは jQuery Mobile or Geocharts. |
Default value
No handler.
Valid values
The name of a Javascript function to be called when the mouse moves out of the item . The function receives an object argument that has the list row and column of the item under the mouse.
...
またはジオチャートでは利用できません。 |
デフォルト値
ハンドラー無し
有効値
マウスがアイテムから離れた時に呼び出されるJavascriptファンクションの名前
このファンクションは、マウス下のリスト行と列が含まれたオブジェクト引数を受け取ります。
例:
function onmouseoutHandler(evt) {
alert("onmouseout handler: Row=" + evt.row + ". Column=" + evt.column);
}