แบบสำรวจการวิจัย: บอกให้เราทราบเกี่ยวกับประสบการณ์การใช้งาน Blockly
เริ่มแบบสำรวจ
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
blockly > utils > browserEvents > conditionalBind
ฟังก์ชัน utils.browserEvents.conditionalBind()
เชื่อมโยงตัวแฮนเดิลเหตุการณ์ที่ระบบจะละเว้นได้หากไม่ได้อยู่ในสตรีมการสัมผัสที่ใช้งานอยู่ ใช้เหตุการณ์นี้สำหรับเหตุการณ์ที่เริ่มหรือดำเนินการท่าทางสัมผัสแบบหลายส่วนต่อ (เช่น mousedown หรือ mousemove ซึ่งอาจเป็นส่วนหนึ่งของการลากหรือคลิก)
ลายเซ็น:
export declare function conditionalBind(node: EventTarget, name: string, thisObject: object | null, func: Function, opt_noCaptureIdentifier?: boolean): Data;
พารามิเตอร์
พารามิเตอร์ |
ประเภท |
คำอธิบาย |
โหนด |
EventTarget |
โหนดที่จะฟัง |
ชื่อ |
สตริง |
ชื่อเหตุการณ์ที่จะฟัง (เช่น "mousedown") |
thisObject |
object | null |
ค่าของ "this" ในฟังก์ชัน |
func |
ฟังก์ชัน |
ฟังก์ชันที่จะเรียกใช้เมื่อมีการทริกเกอร์เหตุการณ์ |
opt_noCaptureIdentifier |
บูลีน |
(ไม่บังคับ) จริงหากการทริกเกอร์เหตุการณ์นี้ไม่ควรบล็อกการดำเนินการของตัวแฮนเดิลเหตุการณ์อื่นๆ ในการแตะครั้งนี้หรือการแตะอื่นๆ พร้อมกัน เท็จโดยค่าเริ่มต้น |
การคืนสินค้า:
ข้อมูล
ข้อมูลที่ทึบแสงซึ่งสามารถส่งไปยัง unbindEvent_
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-25 UTC
[null,null,["อัปเดตล่าสุด 2025-07-25 UTC"],[[["\u003cp\u003e\u003ccode\u003eutils.browserEvents.conditionalBind()\u003c/code\u003e allows binding event handlers that can be selectively ignored based on touch stream activity, making it suitable for multi-part gestures like dragging or clicking.\u003c/p\u003e\n"],["\u003cp\u003eThe function takes parameters for the target node, event name, function to execute, context (\u003ccode\u003ethis\u003c/code\u003e value), and an optional flag to control blocking behavior.\u003c/p\u003e\n"],["\u003cp\u003eIt returns an opaque data object that can be later used to unbind the event using \u003ccode\u003eunbindEvent_\u003c/code\u003e.\u003c/p\u003e\n"]]],["The `conditionalBind` function binds an event handler to a specified node. It takes the node, event name, a `this` object, the handler function, and an optional boolean to control blocking of other event handlers. When the event is triggered, the provided function is executed. This is intended for events related to multi-part gestures. It returns data used for unbinding the event later. This allows to control whether to block execution of other handlers for touches.\n"],null,["[blockly](./blockly.md) \\\u003e [utils](./blockly.utils_namespace.md) \\\u003e [browserEvents](./blockly.utils_namespace.browserevents_namespace.md) \\\u003e [conditionalBind](./blockly.utils_namespace.browserevents_namespace.conditionalbind_1_function.md)\n\nutils.browserEvents.conditionalBind() function\n----------------------------------------------\n\nBind an event handler that can be ignored if it is not part of the active touch stream. Use this for events that either start or continue a multi-part gesture (e.g. mousedown or mousemove, which may be part of a drag or click).\n\n**Signature:** \n\n export declare function conditionalBind(node: EventTarget, name: string, thisObject: object | null, func: Function, opt_noCaptureIdentifier?: boolean): Data;\n\nParameters\n----------\n\n| Parameter | Type | Description |\n|-------------------------|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| node | EventTarget | Node upon which to listen. |\n| name | string | Event name to listen to (e.g. 'mousedown'). |\n| thisObject | object \\| null | The value of 'this' in the function. |\n| func | Function | Function to call when event is triggered. |\n| opt_noCaptureIdentifier | boolean | *(Optional)* True if triggering on this event should not block execution of other event handlers on this touch or other simultaneous touches. False by default. |\n\n**Returns:**\n\n[Data](./blockly.browserevents_namespace.data_typealias.md)\n\nOpaque data that can be passed to unbindEvent_."]]