我如何在javascript或jquery中按维度对图像进行排序

我如何在
JavaScript或jQuery中按维度对图像进行排序.我的代码如下:

var imgsrc = '';
if (document.images.length < 1) {
    alert('No images to open');
    return;
}
for (var i = 0; i < window.parent.document.images.length; i++) {
    imgsrc + = '\n';
}

if (imgsrc != '') {
    var newwin = window.open('', '');
    newwin.document.open();
    newwin.document.write('\n' + imgsrc + '');
    newwin.document.close();
} else {
    alert('No images!')
}​

请帮帮我.先感谢您.

最佳答案 有关获取图像尺寸,请参阅
here.您可以像
this那样对数组进行排序..sort()有一个带有排序函数的重载.这是你比较大小的地方.

点赞