我想设置#map_canvas
和#content
的高度,但这似乎不起作用:
$(['#map_canvas','#content']).css("height", ($(window).height()-270 + "px"));
有人知道怎么做吗?
答案 0 :(得分:1)
试试这个:
$('#map_canvas, #content').height(window.height-270);
我在当前项目中使用谷歌地球集成做类似的事情......
答案 1 :(得分:0)
尝试(你有更多的括号):
$(['#map_canvas','#content']).css("height", $(window).height()-270 + "px");
答案 2 :(得分:0)
jQuery("#map_canvas,#content").css("height", (jQuery(window).height() - 270 ) + "px");