自动设置iframe大小的jQuery代码_jquery
时间:2021-07-01 10:21:17
帮助过:8人阅读
代码如下:
代码如下:
/*自动宽度*/
global.autoWidth = function () {
//global_main
$(".global_main").height($(window).height() - $(".global_header").eq(0).outerHeight());
$('.global_main').width($(window).width() - $('.global_slide').eq(0).outerWidth()).show();
};