如何获得网站的主机名IFrame嵌入

how to get hostname of the website IFrame is embedded in

本文关键字:IFrame 嵌入 主机 何获得 网站      更新时间:2023-09-26

如何获得网站的主机名Iframe嵌入到使用jquery?例如iframe

<iframe src="xyz.com/123" frameborder="0" allowtransparency="true" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" mozallowfullscreen="mozallowfullscreen" oallowfullscreen="oallowfullscreen" msallowfullscreen="msallowfullscreen" width="640" height="400"></iframe>

试试这样写:

$("iframe").attr("src");

或者查找父URL

$(function(){
  var currentUrl = document.referrer;
  alert(currentUrl)
});