JavaScript this.checked

前端 未结 4 1544
你的背包
你的背包 2021-01-05 09:45

In JavaScript, if we write the following for example:

var c = this.checked;

What is checked here? Is it just a state

4条回答
  •  温柔的废话
    2021-01-05 10:17

    To use the pseudo selector :checked with the jquery object this write:

    $(this).is(':checked')
    

提交回复
热议问题