嗨,如果 div 的不透明度为 0.5,我正在使用 if 语句更改 div 的不透明度,因此如果不透明度为 0,它将更改为 0,因此它将更改为 0.5 我正在使用以下 jquery 代码和它会将不透明度 0.5 更改为 0,但是当我再次单击以将不透明度更改为 0 到 0.5 时,它不起作用。请看一下代码
$("#one_star").click(function(){
if($(this).css({"opacity":"0.5"}))
{
$(this).css({"opacity":"0"});
}
else if(!$(this).css({"opacity":"0.5"}))
{
$(this).css({"opacity":"0.5"});
}
});
我使用了错误的语法吗?任何建议请