jQuery Media Plugin全高和宽

时间:2017-06-16 10:30:13

标签: javascript jquery html

我正在使用jQuery Media Plugin在浏览器中查看PDF文件。我有一个弹出窗口,它使用jQuery Media Plugin加载PDF。但是,媒体插件似乎只允许定义固定的宽度和高度,如下所示:

$('a.media').media({width:500, height:400});

我想将它设置为100%宽和高。我无法在网上找到任何答案。我目前使用$(document).height()$(document).width()来获取值,并将其设置为:

    xheight = $(document).height();
    ywidth = $(document).width();
    $('a.media').media({width:ywidth, height:xheight});

这似乎有效,但我不确定这是否是正确的方法,以及它是否适用于浏览器。

1 个答案:

答案 0 :(得分:1)

文档heightwidth获取文档准备

$(document).ready(function(){
    xheight = $(document).height();
    ywidth = $(document).width();
    $('a.media').media({width:ywidth, height:xheight});
});

我希望这对你有用