我试图在2张桌子上排序d3表格,除了chrome之外,每个浏览器都可以。它有什么问题以及如何解决它?
我的代码:
enter code her}).done( function (response) {
response.sort(function(x, y){
return d3.ascending(x.DQI_FROM_SPEC, y.DQI_FROM_SPEC);
});
response.sort(function(x, y){
return d3.ascending(x.AREA, y.AREA);
});e