我被难住了...我正在构建一个响应式站点,该站点仅在较大的屏幕上加载较大的图形。它在 IE9/FF/Chrome 中运行良好,但在 IE8 中不起作用。
有谁看到是什么让 IE8 不火?这是我的代码:
<script type="text/javascript">
$(document).ready(function() {
$(window).resize(function() {
//small-screen
if (window.innerWidth < 768) {$('#smiling-model').html('');}
//end small-screen
else if (window.innerWidth >= 768) {
$('#smiling-model:empty').append('<img id="#smiling-model-img" src="images/smiling-model-500x456px.jpg" alt="Great Smile" />');
}
}).resize(); // trigger resize event
});
</script>
这是实际网站的链接: http ://www.orlickdental.com/
谢谢大家!
奥马尔