封鎖 >IDragTarget >onDragEnter
IDragTarget.onDragEnter() 方法
當含有區塊或泡泡的遊標進入這個拖曳目標時,系統會處理。
Signature:
onDragEnter(dragElement: IDraggable): void;
參數
傳回:
void
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-09-12 (世界標準時間)。
[null,null,["上次更新時間:2024-09-12 (世界標準時間)。"],[[["The `onDragEnter` method is triggered when a draggable element (block or bubble) enters the boundaries of a drag target."],["This method receives the currently dragged element (`IDraggable`) as an argument to allow for custom handling based on the dragged item."],["The method does not return any value (`void`) and primarily serves to initiate visual or logical responses upon drag enter."]]],["The `onDragEnter` method, part of the `IDragTarget` interface, manages the event when a dragged element (either a block or bubble) enters the target area. It accepts a single parameter, `dragElement`, which is an `IDraggable` object representing the item being dragged. This method's core action is handling the entry, and it does not return any value, as indicated by the `void` return type.\n"]]