HTML中IE兼容性
<!–[if IE 6]> <div class=”ie6″> <p>亲爱的玩家:<br /> …
Read more<!–[if IE 6]> <div class=”ie6″> <p>亲爱的玩家:<br /> …
Read moreis_ie()函数判断浏览器是否是IE内核
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<?php function is_ie() { $useragent = strtolower($_SERVER['HTTP_USER_AGENT']); if((strpos($useragent, 'opera') !== false) || (strpos($useragent, 'konqueror') !== false)) return false; if(strpos($useragent, 'msie ') !== false) return true; return false; } if(is_ie()){ echo '这是IE'; }else{ echo '这不是IE'; } |
Read more