私は2つのラジオボタンを持っています。チェックしたラジオボタンのカスタム属性「xmlvalue」の値を取得できるようにしたいと考えています。
次のスクリプトで試しました:
var userType = $("input[name=ctrl_CustomerType]:checked", this).attr('xmlvalue');
マークアップ:
<input type="radio" name="ctrl_CustomerType" id="ctrl_CustomerType_1" xmltag="CustomerType" xmlvalue="existingCustomer" checked="checked"> Yes
<br />
<input type="radio" name="ctrl_CustomerType" id="ctrl_CustomerType_2" xmltag="CustomerType" xmlvalue="newCustomer"> No
-- しかし、「Undefined」が表示され続けます。
何か案は?