jQuery prettyPhoto:如何传递额外的GET参数?

时间:2011-11-19 19:16:25

标签: javascript jquery prettyphoto

<a href="page.html?iframe=true&amp;width=700&amp;height=100%&amp;myVar=text" rel="prettyPhoto">Click Me</a>

在js脚本中:

$('a[rel*=prettyPhoto]').prettyPhoto({
        keyboard_shortcuts: false,
        social_tools: false,
        deeplinking: false
    });

在page.html中,我无法访问myVar。帮助

  • 发现类似的问题here,但也没有回答。

1 个答案:

答案 0 :(得分:2)

解决方案:您要传递的网址参数应位于“iframe”变量之前。例如:

page.html?myVar=text&iframe=true&width=700&height=100%