浏览 4072 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (7) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2010-09-10
自己用jQuery搞了个Table增加Row的东东,实现过程,有如下几个心得,记录在这里。
i. jQuery(table).append(jQuery(newRow)); jQuery API append方式的调用,通过这个append来给已有的Table新加行。 ii. var newRow = jQuery(hiddenRowEle).clone(true);这个clone方法是怎么封装document.getElementById(elemetId).cloneNode(true)的?jQuery做了这样的封装后弥补了cloneNode方法的哪些不足? iii. jQuery的get(0)方法返回的是native的DOM元素?还是经过jQuery封装的?看jQuery的API,知道This(get(index)方法) allows you to extract the actual DOM element and operate on it directly without necessarily using jQuery functionality on it. iv. 直接调用jQuery(parentRow).remove();,而非native的remove,依稀记得native的remove方法在遍历地remove时,会在类似ArrayList中remove(Object o)时的问题。 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |