Jquery select checked in ie8 normal mode

  • 2020-03-30 01:43:05
  • OfStack

Found ie8 in normal mode

$("input[name='check']:checked").val() can select the corresponding check box normally

$("input[name='check'][checked]").val() makes an error and randomly selects selected items

It's strange

Related articles: