这感觉像是一个业余问题,但是您如何在 Javascript / jQuery 的自定义函数中处理事件?
现在我正在使用这个:
$(".button").on("click", function(event){
removeButton();
});
function removeButton() {
$(this).removeClass("specifiedClass");
}
我试图removeButton()
理解我希望它删除.button
本身的类。
我不确定如何removeButton()
参加该活动,但我尝试过:
$(".button").on("click", function(event){
removeButton(event);
});
function removeButton(event) {
$(this).removeClass("specifiedClass");
}
但它不起作用。有谁知道怎么做?