2012-02-07 7 views
0

このコードは、以下の誤った行はここにあるIE 8問題は(この)

にChromeとIE 9しかし、休憩中に正常に動作します。私はそれが束縛だと思う。

google.maps.event.addListener(this.map, "click", (this.leftClick).bind(this)); 

他に誰かがこの問題を抱えていますか?誰かがこれを持っているかどうかは分かりません。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml" > 
<head> 
<style> 
    html, body, #map 
    { 
     margin: 0; 
     padding: 0; 
     height: 100%; 
     width: 100%; 
    } 
</style> 

<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.js"></script> 
<script src="http://maps.googleapis.com/maps/api/js?libraries=geometry,drawing&sensor=true" type="text/javascript"></script> 
<script language="javascript"> 

    var MyPage = function() { 
     this.map = null; //google map 
    }; 

    MyPage.prototype.initialize = function() { 
     this.map = new google.maps.Map(document.getElementById("map"), 
     { 
      zoom: 8, 
      center: new google.maps.LatLng(30, -97), 
      mapTypeId: google.maps.MapTypeId.ROADMAP 
     }); 

     google.maps.event.addListener(this.map, "click", (this.leftClick).bind(this)); 
    } 

    MyPage.prototype.leftClick = function (event) { 
     alert('hi'); 
    } 

    $(window).load(function(){ 
     var my = new MyPage(); 
     my.initialize(); 
    }); 

</script> 
</head> 
<body> 
<div id="map"></div> 
</body> 
</html> 

答えて