我正在制作我的表格的移动版本,我正在使用以下脚本来帮助这样做:
<script>
$(document).ajaxSuccess(function () {
$('table#CustomerMainTable td').each(function () {
var idx = $(this).index();
$(this).prepend($('table#CustomerMainTable tr th').eq(idx).text());
$('table#CustomerMainTable th').hide();
});
});
</script>
这在我的小提琴中很好用:http: //jsfiddle.net/2EJy3/1/
但在我的应用程序中,它会创建重复项,例如。td 将 th 打印两次,而不是一次。有谁知道这是什么原因造成的?