0
我有以下功能:檢查所選類的jQuery
function next_or_previous(){
$(document).on('click', 'a.next, a.previous', function (e) {
var rh = $(this);
if (rh == 'a.next') { //??
console.log("next");
} else if (rh == 'a.previous') {
console.log("previous");
}
});
};
我只是想檢查被點擊了什麼課(next
或previous
)。我會如何去做這件事?