Make a checkbox checked or unchecked based on the value?

前端 未结 8 1268
星月不相逢
星月不相逢 2020-12-29 23:02

How can we make a checkbox checked or unchecked programatically based on the value? That is to say, for a particular user if the value is true, the checkbox should be checke

相关标签:
8条回答
  • 2020-12-29 23:47

    You have to have a name for the checkbox, eg:

    <input name=checkBox1 type="checkbox" class="checkbox">
    

    For functionality :

        if(x==1){
       checkBox1.Checked = true; //To Check
    }
    else{
       checkBox1.Checked = false // To Uncheck
    }
    
    0 讨论(0)
  • 2020-12-29 23:48

    try this:

    <input type="radio" name="filter_favorites" value="Favorites" @(loggedIn ? "checked" : "") />
    

    So this is a simple radio button which checks loggedIn variable & if true radio button will be checked else not.

    0 讨论(0)
提交回复
热议问题