说我将一个新项目推入一个数组,排序后,我想获取它的索引。
function sortInt(a, b) {
return a - b;
}
numbers = [7,6];
numbers.sort(sortInt);
$('#text').text(numbers.toString());
$('button').click(function () {
numbers.push('4');
alert(numbers.indexOf("6")); // doesn't work
numbers.sort(sortInt);
$('#text').text(numbers.toString());
});