var ua = navigator.userAgent;
var matchs = ua.match(/iPhone\sos\s*(\d)/i);
var num = matchs && matchs[1];
if(num !=null && parseInt(num) < 6) {}
match() :它将返回一个数组,其中存放了与它找到的匹配文本有关的信息。该数组的第 0 个元素存放的是匹配文本,而其余的元素存放的是与正则表达式的子表达式匹配的文本。
原文链接:https://www.f2er.com/regex/360565.html