我有一系列假设8项
function myFunction()
{
var divToPrint=document.getElementById('IdOfDivTobePrinted');
var newWin=window.open('','Print-Window');
newWin.document.open();
newWin.document.write('<html><body onload="window.print()">'+divToPrint.innerHTML+'</body></html>');
newWin.document.close();
setTimeout(function(){newWin.close();},10);
}
现在在我的要求中,用户可以指定数据可以显示的列数,假设用户选择3列而不是结构
var a=[1,2,3,4,5,6,7,8]
如何使用表结构中的angularjs实现此目的。所以结果应该只是这样....
1 4 7
2 5 8
3 6