ラジオボタンを選択し「設定」リンクを押すと、リンクを押す前に選択したラジオボタンが選択されている状態にしたいです。ご教授お願いします。
html
1<!DOCTYPE html> 2<html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 </head> 7 <body> 8 <input type="radio" value="" name="radio" checked><label>a</label> 9 <input type="radio" value="" name="radio"><label>b</label> 10 <input type="radio" value="" name="radio"><label>c</label><br> 11 12 <a href="#">設定</a> 13 </body> 14</html> 15
以下が試したコードです。
html
1<?php 2 setcookie("a","checked",time()+1000); 3 setcookie("b","checked",time()+1000); 4 setcookie("c","checked",time()+1000); 5?> 6<!DOCTYPE html> 7<html> 8 <head> 9 <meta charset="utf-8"> 10 <title></title> 11 </head> 12 <body> 13 <input type="radio" value="" name="radio" checked><label>a</label> 14 <input type="radio" value="" name="radio" <?=$_COOKIE["b"] ?>><label>b</label> 15 <input type="radio" value="" name="radio" <?=$_COOKIE["c"] ?>><label>c</label><br> 16 17 <a href="#">設定</a> 18 </body> 19</html> 20
デフォルトではaが選択され、その後bを選択し「設定」を押すと再度このページが表示されbが選択されている、というようにしたいです。
回答1件
あなたの回答
tips
プレビュー