AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# jQuery 事件 - type 属性 ## 实例 显示触发了哪种类型的事件: ``` $("p").bind('click dblclick mouseover mouseout',function(event){ $("div").html("Event: " + event.type); }); ``` ## 定义和用法 type 属性描述触发哪种事件类型。 ### 语法 ``` _event_.type ``` | 参数 | 描述 | | --- | --- | | _event_ | 必需。规定要检查的事件。这个 _event_ 参数来自事件绑定函数。 |