如何加载fancybox框架宽度

时间:2016-10-21 11:52:14

标签: javascript jquery fancybox

我有一个fancybox弹出窗口,扩展到父

的95%
 $.fancybox.open({width:95%, ...

是否可以获得弹出框架或父框架的宽度(我需要在弹出框架内),因为我需要调整屏幕的一部分以保持设置宽度的图像,当图像很大时。

2 个答案:

答案 0 :(得分:1)

您可以使用$(this).parent()选择其父级,然后询问其宽度。

答案 1 :(得分:1)

//This will give you the outer width
$("#fancyBox_Container").outerWidth(); 

//This will give you parent outer width, in place of id, you can give direct element id or class name
$("#fancyBox_Container").parents().outerWidth();