2014-05-06 39 views
1

客戶最初在IE瀏覽器中遇到過這個問題(我不知道是什麼版本)。我能夠在我的Samsung Galaxy 3手機上的Chrome瀏覽器上覆制它。當查看有兩個查詢字符串了此鏈接,CSS不使用網頁上:
http://catalogs.infocommiq.com/avcat/ctl1642/index.cfm?bimlist&company=203603當頁面有多個查詢字符串時CSS不工作

您可以查看網頁的源代碼,並看到CSS文件被調用,都可用。 iqRegional.css keywordsearchsearchform.css iqBIM.css

一個CSS文件被稱爲具有絕對的聯繫,另外兩個與相對鏈接。我的Samsung Galaxy 3手機上的Chrome瀏覽器上的所有文件都不會加載此頁面。

但是,如果我縮短鏈接中的查詢字符串,CSS加載罰款。 http://catalogs.infocommiq.com/avcat/ctl1642/index.cfm?bimlist

回答

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文件的調用。