单选:
$(".fjsx").on("click", ".gzqy-nr-list", function () {
$(".fjsx .gzqy-nr-list").removeClass("current");
$(this).addClass("current");
})
多选:
$(".fxdjs").on("click", ".gzqy-nr-list", function () {
if ($(this).hasClass("current")) {
$(this).removeClass("current");
} else {
$(this).addClass("current");
}
})
以上。