谁能帮我让这个脚本适用于 IE8?它在 Mozilla 和 WebKit 浏览器中运行良好,但在 IE8 中引发错误:“dataset.numValue”为空或不是对象。
var $wrapper = $('#containerInner'),
$sorted = $wrapper.find('.sortMe').get().sort(function (a, b) {
return +a.dataset.numValue - +b.dataset.numValue;
});
我知道 IE8 支持数据属性......但无法弄清楚或在谷歌上找到答案!