prettyphoto iframe

时间:2013-04-10 06:03:11

标签: prettyphoto

我使用prettyphoto在iframe中显示网页。有没有人知道包含网页http:// reference的唯一值的元素id?由于他们没有身份证,我以为我可以使用它。

谢谢。

我到了某个地方。

alert($(“#pp_full_res”)。html());

给了我

  

iframe src =“http://xxxx.com/zzz/html”iframeborder =“no”height =“640”   等等

我怎样才能抓住src?

感谢

2 个答案:

答案 0 :(得分:0)

基于上面的示例,为了获得实际的iframe src,您可以使用JQuery的attr()方法。

var sSrc = $(“#pp_full_res”)。attr('src');

答案 1 :(得分:0)

您可以在设置漂亮照片时设置自己的iframe参考:

$("a[rel^='prettyPhoto']").prettyPhoto({
  iframe_markup: '<iframe id="name-here" name="name-here" src ="{path}" width="{width}" height="{height}" frameborder="no"></iframe>',
});