Array.indexOf() 수정 Internet Explorer 웹 브라우저의 경우 다음을 사용하십시오 -
jQuery.inArray( value, array [, fromIndex ] )
다음을 추가하십시오.
<!--[if lte IE 10]>
여기에서 프로토타입을 살펴보겠습니다.
<!--[if lte IE 10]>
<script>
if (!Array.prototype.indexOf) {
// add code
}
</script>
<![endif]-->