5
JavaScript或jQuery有一個函數返回一個數組的元素,該數組的索引等於另一個數組中給定值的位置? (我可以寫我自己,但我不想推倒重來。)JavaScript或jQuery是否具有與Excel VLOOKUP類似的功能?
喜歡的東西:
function vlookup(theElement, array1, array2) {
$.each(array1, function(index, element) {
if (element === theElement)
return array2[index];
});
return null;
}
但是,嗯......在標準庫。
您的示例看起來不像[典型的vlookup用法](http://www.techonthenet.com/excel/formulas/vlookup.php),但是自己編寫代碼有什麼問題? – 2011-03-02 20:04:17
我不喜歡編碼我可以編碼的東西,因爲我是個蠢貨白癡,我更喜歡使用實際設計/測試的標準庫。 – pyon 2011-03-02 21:15:32