Loading

jQuery 在Table中选择input之类的东西注意事项

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对象的;

posted @ 2015-11-02 09:16  stono  阅读(440)  评论(0编辑  收藏  举报