<script language="javascript">
    if (window.screen) {  
        var pageWidth=screen.width;  
        px768 = "t768.html";  
        px769 = "t769.html";  
        if (pageWidth <= 768) {  
            self.location.replace(px768); //小于等于 768 像素响应条件
        }  
        if (pageWidth >= 769) {  
            self.location.replace(px769); //大于等于 769 像素响应条件
        }
    }  
</script>  

0 条评论

发表回复

Avatar placeholder

您的电子邮箱地址不会被公开。 必填项已用*标注