日期:2014-05-16 浏览次数:20405 次
function myeachtabledata(id)
{
var tabarr=new Array();
$('#'+id).find("tr").each(function(trindex)
{
tabarr[trindex]=new Array();
$(this).find("td").each(function(tdindex)
{
tabarr[trindex][tdindex]=$(this).text();
});
});
return window.location.href =("?a=export_csv &&str=" +tabarr);
}