我有这个代码:
$("#Editing").click(function(){
if ($(this).attr("class","OptionsOpt-On"))
{$(this).attr("class","OptionsOpt-Off"); Edit = false;}
else if ($(this).attr("class","OptionsOpt-Off"))
{$(this).attr("class","OptionsOpt-On"); Edit = true;}
});
我已经搜索过但无法找到类似的答案,因为我发现的所有问题都与我已确定不在我的代码中的代码存在问题。我不知道为什么“else if”不起作用,但是如果我将其更改为 if,它就可以正常工作...