interface UIEventInit {
    bubbles?: boolean;
    cancelable?: boolean;
    composed?: boolean;
    detail?: number;
    view?: null | Window;
    which?: number;
}

层级 (查看完整内容)

属性

bubbles?: boolean
cancelable?: boolean
composed?: boolean
detail?: number
view?: null | Window
which?: number