에/무엇인가난 내가 뭘 <code>/i</code>이에 궁금 navigator.userAgent.match
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: function() {
return navigator.userAgent.match(/Opera Mini/i);
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i);
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
}};
}
출처 : https://www.sitepoint.com/navigator-useragent-mobiles-including-ipad/이
가사람이 정확히 무엇인지 /i
말해 주시겠습니까? 때때로 그것은 또한 /g
대소 문자를 구별 플래그의 현재 위치에서 시작 일치
so/i는 대문자와 소문자를 구분하지 않지만/i를 다른 문자로 바꿀 수 있습니까? – Gerwin
아니요, 할 수 없습니다. 그게 설계된 것입니다. –