解决方法
如果不是跨站点脚本限制,这应该是正常的。不幸的是,我不知道如何获取URL而不违反这些限制。
<html> <head> <script type="text/javascript"> function GetIFrameUrl() { alert('url = ' + document.frames['frame1'].location.href); } </script> </head> <body> <a href="#" onclick="GetIFrameUrl();">Find the iFrame URL</a> <iframe name="frame1" src="http://www.google.com" width="100%" height="400"></iframe> </body> </html>