📅  最后修改于: 2022-03-11 15:01:26.897000             🧑  作者: Mango
function example() {
}
function exampleParams(string, number, bool) {
}
//to call a function onclick without passing arguments
$(selector).click(example);
//to call a function onclick and pass arguments
$(selector).click(function() {
exampleParams("string example", 3, true);
});