2015-05-27 69 views
-1

我目前使用Jvcetor地圖顯示錯誤在IE8 browser.document模式和瀏覽器模式不同顯示errot。但兩者都一樣其工作在這裏附上我的代碼:Jvector地圖不工作準備IE8?

<!DOCTYPE html> 
    <html> 
    <head> 
     <title>Country Footprint</title> 
     <script> 
     jQuery.noConflict(); 
     jQuery(function(){ 
      var $ = jQuery; 
      $('#focus-single').click(function(){ 
      $('#map1').vectorMap('set', 'focus', {region: 'AU', animate: true}); 
      }); 
      $('#focus-multiple').click(function(){ 
      $('#map1').vectorMap('set', 'focus', {regions: ['AU', 'JP'], animate: true}); 
      }); 
      $('#focus-coords').click(function(){ 
      $('#map1').vectorMap('set', 'focus', {scale: 7, lat: 35, lng: 33, animate: true}); 
      }); 
      $('#focus-init').click(function(){ 
      $('#map1').vectorMap('set', 'focus', {scale: 1, x: 0.5, y: 0.5, animate: true}); 
      }); 
      $('#map1').vectorMap({ 
      map: 'world_mill_en', 
      panOnDrag: true, 
      focusOn: { 
       x: 0.5, 
       y: 0.5, 
       scale: 1, 
       animate: true 
      }, 
      series: { 
       regions: [{ 
       scale: ['#688FA0'], 
       normalizeFunction: 'polynomial', 
       values: { 





     </script> 

其顯示網頁錯誤在IE8中。文檔模式和瀏覽器不同時如何運行?請幫我

回答

2

這就像你第五次提出完全相同的問題?

我在評論中回答了這個問題,你不斷地問同樣的事情,同樣的代碼,在這裏

https://stackoverflow.com/questions/30475659/jvector-map-not-working-correctly-ie-8#comment49031731_30475659

,在這裏,不同的用戶,但完全相同的代碼

Jvector Map not working when browser Mode and document mode different in IE8

試着聽這次,你在對象內部有一個尾隨的逗號,它定義了jVectorMap的選項

$('#map1').vectorMap({ 
    map: 'world_mill_en', 
    panOnDrag: true, 
    focusOn: { 
     x: 0.5, 
     y: 0.5, 
     scale: 1, 
     animate: true 
    }, 
    series: { 
     regions: [{ 
      scale: ['#688FA0'], 
      normalizeFunction: 'polynomial', 
      values: { 
       "TL": 0.62, 
       "TO": 0.3, 
       "GB": 2258.57, 
       "US": 14624.18, 
       "VU": 0.72, // IT'S HERE ---------------- 
      } 
      }] 
     }, 

請注意尾隨逗號,對象中的最後一個屬性不應該有尾隨逗號,因爲它後面沒有更多屬性。

大多數瀏覽器並不在意,但在舊的IE中,你會得到完全相同的錯誤,你必須刪除最後一個逗號。

+0

刪除仍然我得到相同的錯誤 – Thennarasu

+0

然後查找更多尾隨逗號 – adeneo

+0

謝謝你先生。我會看到先生 – Thennarasu