Cakephp によって生成されたラジオボタンのグループがあります。
<input type="radio" name="data[hexInput]" id="HexInput1" value="h1">
<input type="radio" name="data[hexInput]" id="HexInput2" value="h2">
<input type="radio" name="data[hexInput]" id="HexInput3" value="h3">
グループ内のラジオボタンの 1 つがチェックされているかどうかを確認する方法はありますか? チェンジイベントか何かで?
特定のボタンでこれを行う方法は知っていますが、グループでは知りません。特定のボタンには、この Js ヘルパーを使用します。
$this->Js->get('HexInput2')->event('change', $this->Js->request(array(
'controller' => 'designer',
'action' => 'test',
), array(
'update' => '#resultDiv',
'async' => true,
'method' => 'post',
'dataExpression' => true,
'data' => $this->Js->serializeForm(array(
'isForm' => false,
'inline' => true
))
))
);