<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.救命?
>发现类似的问题here,但它也没有回答.
最佳答案 解决方法:您要传递的网址参数应位于“iframe”变量之前.例如.:
page.html?myVar=text&iframe=true&width=700&height=100%