jQuery 在Table中选择input之类的东西注意事项:
如果不在td标签中,是不能进行正确选择的;
<table id="tblFormId"> <tr> <td><input type="text" id="txtIn01Id"></td> </tr> <input type="text" id="txtIn02Id" > </table>
这样的代码,$('#tblFormId input')是找不到txtIn02Id对象的;
jQuery 在Table中选择input之类的东西注意事项:
如果不在td标签中,是不能进行正确选择的;
<table id="tblFormId"> <tr> <td><input type="text" id="txtIn01Id"></td> </tr> <input type="text" id="txtIn02Id" > </table>
这样的代码,$('#tblFormId input')是找不到txtIn02Id对象的;