find out if iframe url has been changed

2019-07-17 14:32发布

Is there a way for me to find out if the URL in my iframe has been changed, ie, the user has navigated somewhere? Thanks.

2条回答
Evening l夕情丶
2楼-- · 2019-07-17 15:15
yourIframeName.onbeforeunload = function () {
  //do something
}

This will trigger your function just before navigating to another page on iframe.

This behaves weird on somebrowsers though.

查看更多
【Aperson】
3楼-- · 2019-07-17 15:17

A similar question over here has some answers that should help you out. If you keep track of where the iframe starts, you can then use the methods in that link to see if it has changed.

查看更多
登录 后发表回答