iframe中获取当前页面对应URL

function getMainFrameURL()
{
    var url = parent.document.getElementById("mainPage").contentWindow.location.href;
    alert(url);
}

你可能感兴趣的:(iframe中获取当前页面对应URL)