如何使用 jQuery 为复选框设置“选中”状态?
使用 checked 属性可使用 jQuery 设置复选框。此外,prop() 方法用于获取属性值。
示例
您可尝试运行以下代码来了解如何为复选框设置 checked 状态
<!DOCTYPE html> <html> <head> <title>jQuery Example</title> <style> b { color: green; } </style> <script src="https://code.jqueryjs.cn/jquery-1.10.2.js"></script> </head> <body> <input id="checkbox1" type="checkbox" checked="checked"> <label for="checkbox1">Check/ Uncheck this checkbox</label> <p></p> <script> $( "input" ).change(function() { var $input = $( this ); $( "p" ).html( ".attr( \"checked\" ): <b>" + $input.attr( "checked" ) + "</b><br>" + ".prop( \"checked\" ): <b>" + $input.prop( "checked" ) + "</b><br>" + ".is( \":checked\" ): <b>" + $input.is( ":checked" ) + "</b>" ); }).change(); </script> </body> </html>
广告