Nuta
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować się zalogować lub zmienić katalog.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
Fires on the target element when the user drags the object to a valid drop target.
Syntax
| HTML Attribute | <element ondragenter = "handler(event)"> |
| Event Property | object.ondragenter = handler; |
| attachEvent Method | object.attachEvent("ondragenter", handler) |
| addEventListener Method | object.addEventListener("dragenter", handler, useCapture) |
Event information
| Synchronous | No |
| Bubbles | Yes |
| Cancelable | Yes |
Event handler parameters
- pEvtObj [in]
Type: IHTMLEventObj
Standards information
There are no standards that apply here.
Remarks
You can handle the HTMLFrameSiteEvents::ondragenter event on the source or on the target object. Of the target events, it is the first to fire during a drag operation. Target events use the IHTMLDataTransfer::getData method to stipulate which data and data formats to retrieve. The list of drag-and-drop target events includes:
- HTMLFrameSiteEvents::onbeforepaste
- HTMLFrameSiteEvents::onpaste
- HTMLFrameSiteEvents::ondragenter
- HTMLFrameSiteEvents::ondragover
- HTMLFrameSiteEvents::ondragleave
- HTMLFrameSiteEvents::ondrop
When scripting custom functionality, use the IHTMLEventObj::returnValue property to disable the default action.
Calls the associated event handler.
To invoke this event, do one of the following:
- Drag the selection over a valid drop target within the client.
- Drag the selection to a valid drop target within another window.