📅  最后修改于: 2022-03-11 15:02:04.595000             🧑  作者: Mango
$('body').trigger('this_works', [{data: [1, 2, 3]}, 'something']);
$('body').on('this_works', function (event, json, string) {
// parameter is stocked in json.data here.
console.log(event, json, string);
});