<!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>
<script type="text/javascript"
    src="http://maps.google.com/maps/api/js?sensor=true">
</script>  
<script type="text/javascript">
function initialize() {
   var myLatlng = new google.maps.LatLng(30.397223,-86.484351);
   var myOptions = {
     zoom: 11,
     center: myLatlng,
     mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("mymap"), myOptions);  //var image = 'http://localhost/sunsetr4/images/googlemap/maps_er.png';
  //var beachMarker = new google.maps.Marker({
      //position: myLatlng,
     // map: map,
      //icon: image
  //});
  var contentString = '<div id="content">'+     '<div id="siteNotice">'+     '</div>'+     '<h1 id="firstHeading" class="firstHeading">Uluru</h1>'+     '<div id="bodyContent">'+     '<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' +     'sandstone rock formation in the southern part of the '+     'Northern Territory, central Australia. It lies 335 km (208 mi) '+     'south west of the nearest large town, Alice Springs; 450 km '+     '(280 mi) by road. Kata Tjuta and Uluru are the two major '+     'features of the Uluru - Kata Tjuta National Park. Uluru is '+     'sacred to the Pitjantjatjara and Yankunytjatjara, the '+     'Aboriginal people of the area. It has many springs, waterholes, '+     'rock caves and ancient paintings. Uluru is listed as a World '+     'Heritage Site.</p>'+     '<p>Attribution: Uluru, <a href="http://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">'+     'http://en.wikipedia.org/w/index.php?title=Uluru</a> (last visited June 22, 2009).</p>'+     '</div>'+     '</div>';  var infowindow = new google.maps.InfoWindow({     content: contentString }); 
  var er = new google.maps.Marker({     
position: myLatlng,     
map: map,     
title:"Uluru (Ayers Rock)" 
});  
  google.maps.event.addListener(er, 'click', 
function() {   
infowindow.open(map,er); 
});
}
  function myclick(){
  google.maps.event.trigger(er,'click');
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head><body onload="initialize()">
<div id="mymap" style="margin:0 auto; height:800px; width:800px;">
</div>
<div style="margin:0 auto; height:80px; width:800px;"><a href="javascript:myclick();">cilck</a></div>
</body>
</html>上面是源代码,为什么 google.maps.event.trigger(er,'click');这句没起作用