No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ie8.js 554B

12345678910111213
  1. var userAgent = window.navigator.userAgent.toLowerCase();
  2. var appVersion = window.navigator.appVersion.toLowerCase();
  3. if (userAgent.indexOf("msie") != -1) {
  4. if (appVersion.indexOf("msie 6.") != -1) {
  5. alert("このページはInternet Explorer 9 以降でご覧ください");
  6. } else if (appVersion.indexOf("msie 7.") != -1) {
  7. alert("このページはInternet Explorer 9 以降でご覧ください");
  8. } else if (appVersion.indexOf("msie 8.") != -1) {
  9. alert("このページはInternet Explorer 9 以降でご覧ください");
  10. }
  11. }