Home  >  Article  >  Web Front-end  >  How to set radio in javascript

How to set radio in javascript

藏色散人
藏色散人Original
2021-06-27 09:48:084110browse

How to set radio in javascript: first find the js code part; then set the radio and select it through the "if(data.isDefault==1){...}" method.

How to set radio in javascript

The operating environment of this article: windows7 system, javascript version 1.8.5, Dell G3 computer.

How to set radio with javascript?

js set radio radio button value selected

html page:

<div>
    <label><input type="radio" name="sex" value="1" id="isMale" />男</label>
    <label><input type="radio" name="sex" value="2" id="isFemale" />女</label>
</div>

js part code:

<script>
    //js设置radio选中
    if(data.isDefault==1){
        $("#isMale").attr("checked","checked");
        $("#isFemale").removeAttr("checked");
    }
    //获取选中的input的value和html
    $("input[type=radio][name=sex]:checked").val();
    $("input[type=radio][name=sex]:checked").html();
</script>

[Recommended learning: javascript advanced tutorial]

The above is the detailed content of How to set radio in javascript. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn