先加一个扩展函数:
Array.prototype.contains = function (obj) { var index = this.length; while (index–) { if (this[index] === obj) { return true; } } return false; }
定义一个数组: var arr_qf = ["原单价", "优惠折扣(%)", "月租金"];
调用函数,检测是否存在: arr_qf.contains(‘日租金')
本文共 292 字,大约阅读时间需要 1 分钟。
先加一个扩展函数:
Array.prototype.contains = function (obj) { var index = this.length; while (index–) { if (this[index] === obj) { return true; } } return false; }
定义一个数组: var arr_qf = ["原单价", "优惠折扣(%)", "月租金"];
调用函数,检测是否存在: arr_qf.contains(‘日租金')
转载于:https://www.cnblogs.com/heyiping/p/10616593.html