如何使用jQuery在悬停时更改iFrame的高度?
我试过这个:
<script type="text/javascript">
$(document).ready(function(){
$(".googlemaps").hover( function(){
$('#googlemaps').height(300);
});
});
</script>
我的iframe是:
<div class="googlemaps">
<xsl:variable name="location"><xsl:value-of select="DocumentEdition/Fields/Field[@Name = 'Location']" /></xsl:variable>
<iframe id="googlemaps" width="489" height="215" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.dk/maps?f=q&source=s_q&hl=da&geocode=&q={$location}&output=embed"> </iframe><br /><small><a href="http://maps.google.dk/maps?f=q&source=embed&hl=da&geocode=&q=skive&sll=55.869147,11.228027&sspn=7.860459,28.54248&ie=UTF8&hq=&hnear=Skive&z=13&ll=56.565498,9.021939" style="color:#0000FF;text-align:left">Vis stort kort</a></small>
</div>
答案 0 :(得分:0)
您的代码似乎没问题,但也可以尝试一下:
$('#googlemaps').attr('height', 300 + 'px');
答案 1 :(得分:0)
你的代码很好。谷歌似乎正在将iframe的大小调整回原来的大小。删除网址,您会看到。