Maison > Questions et réponses > le corps du texte
P粉4169968282023-08-16 09:20:05
Mon approche précédente consistait à mettre ces multiples valeurs dans un tableau, comme suit :
var options = [foo, bar];
Utilisez ensuite la méthode indexOf() :
if(options.indexOf(foobar) > -1){ //做一些事情 }
Si tu veux être plus belle :
if([foo, bar].indexOf(foobar) +1){ //你再也找不到比这更漂亮的了 :) }
Pour les anciens navigateurs :
( https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/IndexOf )
if (!Array.prototype.indexOf) { Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) { "use strict"; if (this == null) { throw new TypeError(); } var t = Object(this); var len = t.length >>> 0; if (len === 0) { return -1; } var n = 0; if (arguments.length > 0) { n = Number(arguments[1]); if (n != n) { // shortcut for verifying if it's NaN n = 0; } else if (n != 0 && n != Infinity && n != -Infinity) { n = (n > 0 || -1) * Math.floor(Math.abs(n)); } } if (n >= len) { return -1; } var k = n >= 0 ? n : Math.max(len - Math.abs(n), 0); for (; k < len; k++) { if (k in t && t[k] === searchElement) { return k; } } return -1; } }
P粉2447306252023-08-16 00:39:25
N'essayez pas d'être trop astucieux, surtout lorsque cela affecte inutilement les performances. Si vous avez vraiment beaucoup de comparaisons à faire, formatez-le simplement.
if (foobar === foo || foobar === bar || foobar === baz || foobar === pew) { //做一些操作 }