.prop( propertyName ) .prop( propertyName,value ) .prop( map ) .prop( propertyName,function(index, oldPropertyValue) )
<html> <head> <title>ThaiCreate.Com jQuery Tutorials</title> <style> p { margin: 20px 0 0 } b { color: blue; } </style> <script type="text/javascript" src="jquery-1.6.4.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("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> </head> <body> <input id="check1" type="checkbox" checked="checked"> <label for="check1">Check me</label> <p></p> </body> </html>
<html> <head> <title>ThaiCreate.Com jQuery Tutorials</title> <style> img { padding:10px; } div { color:red; font-size:24px; } </style> <script type="text/javascript" src="jquery-1.6.4.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("input[type='checkbox']").prop({ disabled: true }); }); </script> </head> <body> <input type="checkbox" checked="checked" /> <input type="checkbox" /> <input type="checkbox" /> <input type="checkbox" checked="checked" /> </body> </html>
ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท