Radio box, get the checked value [iCheck]

后端 未结 4 477
我在风中等你
我在风中等你 2021-01-11 14:53

Basic radio box

  • Te
  • 4条回答
    •  孤城傲影
      2021-01-11 15:22

      Use this

      // Check #x
      $( "#x" ).prop( "checked", true );
       
      // Uncheck #x
      $( "#x" ).prop( "checked", false );

    提交回复
    热议问题