如图所示,如何在B页面用js控制A页面跳转至某地址?
如果是同源的话,直接 window.parent.location.href 就可以。不同源又没有 A 页面控制权的话无解。
window.parent.location.href
B页面的js里window.parent.window.location.href = '//www.baidu.com'
window.parent.window.location.href = '//www.baidu.com'
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> </head> <body> <iframe src="b.html"></iframe> </body> </html>
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <script type="text/javascript"> function parentJump() { window.parent.location.href = 'http://www.baidu.com/'; } </script> </head> <body> <button onclick="parentJump();">父页面跳到百度</button> </body> </html>
使用window.parent从iframe中的页面访问父窗体。
window.parent
如果是同源的话,直接
window.parent.location.href
就可以。不同源又没有 A 页面控制权的话无解。
B页面的js里
window.parent.window.location.href = '//www.baidu.com'
a.html
b.html
使用
window.parent
从iframe中的页面访问父窗体。