如何在动态生成的 div 上加载 Bing/Google 地图?
例子
<div id="cont"></div>
...
$('#cont').append('<div id="mapDiv" style="position: relative; width: 100%; height: 100%;"></div>');//dynamically add div
var map = new Microsoft.Maps.Map($("mapDiv"), myOptions);//Bing/Google maps
有什么建议吗?