我有以下代码:
JS:
var flag = 0;
funct(){//makes changes on css
flag=0;}
HTML:
<form onsubmit="if(flag==1)return funct()">
PHP:
if(somethingIsOK){
echo "<script>flag=1;</script>"; //should use new css which comes with funct()
}else{//do something else with keeping the existing css}
我想要这个结构,但我不能flag
像我想要的那样使用变量。我尝试过制作flag
静态,但没有奏效。