简体   繁体   中英

How to get the ID value while the radio button is checked in Shopify?

I have a radio button group and one input field. What I want is when the radio button property is CHECKED the below ID gets their value. I tried something which is wrong.

 <input type="radio" id="male" name="gender" value="male" checked> <label for="male">Male</label><br> <input type="radio" id="female" name="gender" value="female"> <label for="female">Female</label><br> <input type="text" id="{%if radio.checked='checked'%} Account {%endif%}" class="">

I think you need input box value as selected radio button value. if you change the id of input control then HTML page will have 2 controls with same id. If you want input control value to show selected radio value then use below code.

<script language="javascript">

function onCheck(isChecked, value){
    document.getElementById('displaySelRad').value = value
}

</script>


    <input type="radio" id="male" name="gender" value="male" checked onclick="onCheck(this.checked, this.value)">
    <label for="male">Male</label><br>
    <input type="radio" id="female" name="gender" value="female" onclick="onCheck(this.checked, this.value)">
    <label for="female">Female</label><br>

    <input type="text" id="displaySelRad" class="">

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM