<input type="checkbox" id="a">
checkbox 如果用disabled设置成可不编辑, 那样的话value值,就无法传递到后台.
所以使用jQuery click方法来实现 不可编辑.
<script type="text/javascript"> $('#a').click(function() { if() return false; if() return true; }); </script>
<input type="checkbox" id="a">
checkbox 如果用disabled设置成可不编辑, 那样的话value值,就无法传递到后台.
所以使用jQuery click方法来实现 不可编辑.
<script type="text/javascript"> $('#a').click(function() { if() return false; if() return true; }); </script>