📜  触发发送参数 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:04.595000             🧑  作者: Mango

代码示例1
$('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);
});