2017-06-16 75 views
2

我使用jQuery Media Plugin在瀏覽器中查看PDF文件。我有一個彈出窗口,它使用jQuery Media Plugin加載PDF。然而,媒體插件似乎只允許定義這樣一個固定的寬度和高度:jQuery Media插件全高和寬度

$('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

文件heightwidth文件準備後得到

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

我希望這會爲你工作