有没有更好的方法来处理多个值。当我有3个以上的选择时,它开始变得非常忙。

if (myval=='something' || myval=='other' || myval=='third') {

}

PHP具有一个称为in_array()的函数,其用法如下:
in_array($myval, array('something', 'other', 'third'))

在js或jquery中是否有类似的东西?

最佳答案

Jquery.inArray()

关于javascript - 有条件,如果有许多值(value),更好的方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5599957/

10-12 14:23