jquery 防止当前页面被Iframe嵌套,防止登录页面Iframe被嵌套

<script type="text/javascript"&g...
<script type="text/javascript">
  if (top.location != location) {
      top.location.href = location.href;
  }
</script>


评论