I use website redirect page window.location.href
, its working fine on all traffic also on iframe
traffic.
我使用网站重定向页面window.location.href,它对iframe流量的所有流量都很好。
<script type="text/javascript">
window.location.href="http://newUrlLocation.com";
</script>
But when I use top.location.href
it does not redirect from inside an iframe
.
但是当我使用top.location.href时,它不会从iframe内部重定向。
<script type="text/javascript">
top.location.href="http://newUrlLocation.com";
</script>
Any one help me please, I want to use top.location.href
for all my traffic also for iframe
任何人请帮助我,我想使用top.location.href我的所有流量也为iframe
1 个解决方案
#1
0
Use: window.top.location.href
instead of: top.location.href
而不是:top.location.href
Difference between the two: window.top.location vs window.location
两者之间的区别:window.top.location vs window.location
#1
0
Use: window.top.location.href
instead of: top.location.href
而不是:top.location.href
Difference between the two: window.top.location vs window.location
两者之间的区别:window.top.location vs window.location