我想用prettyPhoto打开iframe,并希望优化网址
<a href="iframe.html?iframe=true&width=100&height=100">
我尝试在链接中添加一个类并通过jQuery传递参数,但这不起作用。
$("a.iframe']").prettyPhoto({
iframe: true,
width: '100%',
height: '100%'
});
那么有没有办法摆脱网址中的那些参数?
答案 0 :(得分:0)
prettyPhoto允许您设置默认的宽度/高度,如下所示:
$("a.iframe']").prettyPhoto({
default_width: 100,
default_height: 100
});
文档不允许任何其他选项设置这些维度。 你可以阅读docs and see the full list of options here
答案 1 :(得分:0)
我对这个漂亮的照片js没有太多的了解。但我认为你没有给类名称锚定链接,所以你的代码中没有调用jQuery函数。请通过以下锚链接替换锚链接。
<a href="iframe.html?iframe=true&width=100&height=100" class="iframe">
谢谢, Amit Prajapati