码迷,mamicode.com
首页 > Web开发 > 详细

jQuery insertBefore

时间:2016-03-09 12:40:30      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

mark下

$("tbody tr",‘.test-table‘).each(function() {

  $("<td>test</td>").insertBefore("td.last-item",this);//this是当前行,但insertBefore,两个参数并不代表筛选范围。。。。。。
    $("<td>test</td>").insertBefore($(this).find("td.supply-price"));//这个没问题
});

jQuery insertBefore

标签:

原文地址:http://www.cnblogs.com/rhett-web/p/5257367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!