0

我有情况在单击页面链接或图像时打开一个弹出窗口,指向位于 wordpress 主题文件夹中的外部 php 文件。我将页面 ID 和永久链接从我单击的页面传递到该外部 php 文件?请帮我..

提前致谢。

4

1 回答 1

0

试试这个..它可能会帮助你..

下载thickbox js文件并将此代码保留在脚本中

$("#id of the image or any button").click(function(){
     var url = "Give the url of the page that you wanna open in the popup";
     tb_show('<h3></h3>', url+'?KeepThis=true&TB_iframe=true&height=150&width=500');
});

确保将厚盒文件包含在保存上述脚本的文件中

于 2013-04-06T07:25:07.647 回答