1

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;" />
4

2 回答 2

1

这很好用:http: //jsfiddle.net/ypDZw/

于 2012-07-23T16:24:48.783 回答
0

你的代码对我来说很好,这里是链接:jquery set attribute value

于 2012-07-23T17:07:46.453 回答