一个例子:
<html> <head> <script type="text/javascript" src="jquery-1.8.0.js"></script> </head> <body> <table> <tr> <td> <input type="checkbox"/> </td> <td> <input type="text" /> </td> </tr> <tr> <td> <input type="checkbox" /> </td> <td> <input type="text" /> </td> </tr> </table> </body> <script type="text/javascript"> $(function(){ $(":checkbox").click(function(){ if($(this).attr("checked")=="checked") { $($(this).parents("tr").find(":text").get(0)).attr("readonly","readonly"); } else { $($(this).parents("tr").find(":text").get(0)).removeAttr("readonly"); } }); }); </script> </html>
非常感谢chenping2008 !!。
可以让一组中的CheckBox 的Id 与textbox的Id 联系起来。比如说 CheckBox1 选中 就可以变更textbox1