使用时:
$(document).on('dblclick', '#selector_id', {form_key:10}, my_function)
my_function = function(){
console.log(event)
}
我希望能够从event.data
中检索form_key
,按照文档。
然而,在这种情况下,我得到一个MouseEvent
,而不是Event
,它没有data
属性。
我错过了什么?
添加您要使用的参数,它可能会工作:
$(document).on('dblclick', '#selector_id', {form_key:10}, my_function)
function my_function(event){ // <- event
console.log(event)
}
,记住传入的数据在事件中可用。数据,比如:
event.data.form_key
小提琴