客户最初在IE浏览器中遇到此问题(我不确定是什么版本)。我能够在我的三星Galaxy 3手机上的Chrome浏览器上复制它。使用两个查询字符串查看此链接时,页面上不使用CSS:
http://catalogs.infocommiq.com/avcat/ctl1642/index.cfm?bimlist&company=203603
您可以查看该页面的源代码,并查看CSS文件是否正在被调用且可用。 iqRegional.css keywordsearchsearchform.css iqBIM.css
使用绝对链接调用一个CSS文件,另外两个使用相对链接调用。对于此页面,我的Samsung Galaxy 3手机上的Chrome浏览器上不会加载所有文件。
但是,如果我缩短链接中的查询字符串,CSS加载正常。 http://catalogs.infocommiq.com/avcat/ctl1642/index.cfm?bimlist
答案 0 :(得分:1)
http://catalogs.infocommiq.com/avcat/ctl1642/index.cfm
第67-72行有这个:
<script type="text/javascript">
MyIQDynamicListArrayName = 'MyIQListArrays', List_Catalog_ID = 1642;
</script>
<link rel="stylesheet" type="text/css" href="http://catalogs.infocommiq.com/avcat/css/iqRegional.css?v=6"><link rel="stylesheet" type="text/css" href="../keywordsearchsearchform.css?v=6"><title>Audio Visual Equipment, AV Service Providers Directory and Resource Center - AV-iQ</title><meta name="description" content="The most complete audio visual equipment, AV service providers directory and industry resource center including AV equipment, installations, dealers, rentals, service providers, case studies, news and more!"><meta name="keywords" content="audio visual equipment AV services providers directory resource installations dealers rentals 3D cameras displays projectors screens mounts video production presentation systems content delivery digital signage test measurement signal management furniture consoles media manufacturers - AV-iQ"></head>
<body>
相比之下,http://catalogs.infocommiq.com/avcat/ctl1642/index.cfm?bimlist&company=203603
第62-67行有这个:
<script type="text/javascript">
MyIQDynamicListArrayName = 'MyIQListArrays', List_Catalog_ID = 1642;
</script>
</head>
<body>
因此,在第一个链接中调用了更多的css文件。您将要检查模板代码以查看为什么添加查询字符串会导致对这些css文件的调用失败。