1. 程式人生 > >防止網頁被嵌入框架的代碼

防止網頁被嵌入框架的代碼

cati 防止 win cat 嵌入 top 框架 != 網頁

try{

  top.location.hostname;

  if (top.location.hostname != window.location.hostname) {

    top.location.href =window.location.href;

  }

}

catch(e){

  top.location.href = window.location.href;

}

防止網頁被嵌入框架的代碼