jquery - 用php和ajax无刷新添加radio button并保存其选中的状态
程序员文章站
2024-02-07 08:57:16
...
点击第一张图的add按钮,会生成一个新的表格,并会保存其选中的单选框状态,但是再点击的话因为生成的单选框name属性一样,选中的状态会被顶掉
$id = mysql_insert_id();
$head = "
";
if($formate=='standard 85x55mm'){
$result = "
standard 85x55mm
";
}else{
$result = "
";
}
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.="
Id
count
price
price2
price3
1
";
echo $head.$result.$foot;
回复内容:
点击第一张图的add按钮,会生成一个新的表格,并会保存其选中的单选框状态,但是再点击的话因为生成的单选框name属性一样,选中的状态会被顶掉
$id = mysql_insert_id();
$head = "
";
if($formate=='standard 85x55mm'){
$result = "
standard 85x55mm
";
}else{
$result = "
";
}
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.="
Id
count
price
price2
price3
1
";
echo $head.$result.$foot;
为啥不生成name不一样的?