我试图用 jquery-3.3.1.slim.min.js
运行它$("li").click(function(){
$(this).toggleClass("click"); });
$("span").click(function(event){
$(this).parent().fadeOut("slow", function(){
$(this).remove();
});
event.stopPropagation();
});
但它不适用于此版本 但当我尝试使用 jquery-3.3.1.min.js 时,它工作正常 我的代码或jquery中的问题也是如此?