当前位置:Gxlcms > PHP教程 > jquery-用php和ajax无刷新添加radiobutton并保存其选中的状态

jquery-用php和ajax无刷新添加radiobutton并保存其选中的状态

时间:2021-07-01 10:21:17 帮助过:2人阅读

点击第一张图的add按钮,会生成一个新的表格,并会保存其选中的单选框状态,但是再点击的话因为生成的单选框name属性一样,选中的状态会被顶掉
$id = mysql_insert_id();
$head = "

"; $foot = "

";
if($formate=='standard 85x55mm'){
$result = "

Formate:
standard 85x55mm
";
}else{
$result = " Formate:standard 85x55mm
";
}
if($formate=='carte double 170x55mm'){
$result.="carte double 170x55mm";
}else{
$result.="carte double 170x55mm";
}
if($papier=='350g couche mat'){
            $result.="350g couche mat
"; }else{ $result.="350g couche mat
"; } if($papier=='300g offset'){ $result.="300g offset"; }else{ $result.="300g offset"; } if($imprimer=='Recto seule'){ $result.="Recto seule
"; }else{ $result.="Recto seule
"; } if($imprimer=='Recto et verso'){ $result.="Recto et verso"; }else{ $result.="Recto et verso"; } if($pelliculage=='Recto seule brillant'){ $result.= "Recto seule brillant
"; }else{ $result.= "Recto seule brillant
"; } if($pelliculage=='Recto seule mat'){ $result.="Recto seule mat
"; }else{ $result.="Recto seule mat
"; } if($pelliculage=='Recto et verso brillant'){ $result.="Recto et verso brillant
"; }else{ $result.="Recto et verso brillant
"; } if($pelliculage=='Recto et verso mat'){ $result.="Recto et verso mat
"; } else{ $result.="Recto et verso mat
"; } $result.="
Idcountpriceprice2price3
1
"; echo $head.$result.$foot;


回复内容:

点击第一张图的add按钮,会生成一个新的表格,并会保存其选中的单选框状态,但是再点击的话因为生成的单选框name属性一样,选中的状态会被顶掉
$id = mysql_insert_id();
$head = "

"; $foot = "

";
if($formate=='standard 85x55mm'){
$result = "

Formate:
standard 85x55mm
";
}else{
$result = " Formate:standard 85x55mm
";
}
if($formate=='carte double 170x55mm'){
$result.="carte double 170x55mm";
}else{
$result.="carte double 170x55mm";
}
if($papier=='350g couche mat'){
            $result.="350g couche mat
"; }else{ $result.="350g couche mat
"; } if($papier=='300g offset'){ $result.="300g offset"; }else{ $result.="300g offset"; } if($imprimer=='Recto seule'){ $result.="Recto seule
"; }else{ $result.="Recto seule
"; } if($imprimer=='Recto et verso'){ $result.="Recto et verso"; }else{ $result.="Recto et verso"; } if($pelliculage=='Recto seule brillant'){ $result.= "Recto seule brillant
"; }else{ $result.= "Recto seule brillant
"; } if($pelliculage=='Recto seule mat'){ $result.="Recto seule mat
"; }else{ $result.="Recto seule mat
"; } if($pelliculage=='Recto et verso brillant'){ $result.="Recto et verso brillant
"; }else{ $result.="Recto et verso brillant
"; } if($pelliculage=='Recto et verso mat'){ $result.="Recto et verso mat
"; } else{ $result.="Recto et verso mat
"; } $result.="
Idcountpriceprice2price3
1
"; echo $head.$result.$foot;


为啥不生成name不一样的?

人气教程排行