SO上有很多答案展示了如何在jQuery中使用.attr设置img src。由于某种原因,这不起作用。
<img id="imgMap" style="position:absolute;bottom:7px;right:7px;width:250px;height:250px;" />
<script>
$(function () {
$("#imgMap").attr( 'src', 'http://maps.googleapis.com/maps/api/staticmap?center=41.886456,-87.62325&zoom=14&size=250x250&sensor=false&markers=color:blue%7Clabel:S%7C41.886456,-87.62325');
});
</script>
但是在 HTML 中内联的完全相同的 url 可以正常工作
<img id="imgMap2" runat="server" src="http://maps.googleapis.com/maps/api/staticmap?center=41.886456,-87.62325&zoom=14&size=250x250&sensor=false&markers=color:blue%7Clabel:S%7C41.886456,-87.62325" style="position:absolute;bottom:7px;right:7px;width:250px;height:250px;" />