您可能要使用该
onLoad事件,如以下示例所示:
<iframe src="http://www.google.com/" onLoad="alert('Test');"></iframe>
只要iframe中的位置发生更改,警报就会d出。它适用于所有现代浏览器,但可能不适用于某些较旧的浏览器,例如IE5和早期的Opera。
如果iframe在父页面的同一域中显示页面,则可以使用来访问该位置
contentWindow.location,如以下示例所示:
<iframe src="/test.html" onLoad="alert(this.contentWindow.location);"></iframe>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)