Radio buttons not checked in jQuery

前端 未结 7 679
盖世英雄少女心
盖世英雄少女心 2020-12-23 08:51

I have this line of code for page load:

if ($(\"input\").is(\':checked\')) {

and it works fine when the radio button input is checked. How

相关标签:
7条回答
  • 2020-12-23 09:56
    if ($("input").is(":not(:checked)"))
    

    AFAIK, this should work, tested against the latest stable jQuery (1.2.6).

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