<a href="page.html?iframe=true&width=700&height=100%&myVar=text" rel="prettyPhoto">Click Me</a>
在js脚本中:
$('a[rel*=prettyPhoto]').prettyPhoto({
keyboard_shortcuts: false,
social_tools: false,
deeplinking: false
});
在page.html中,我无法访问myVar。帮助
答案 0 :(得分:2)
解决方案:您要传递的网址参数应位于“iframe”变量之前。例如:
page.html?myVar=text&iframe=true&width=700&height=100%