首页 > 代码库 > 防止自己的网站 iFrame

防止自己的网站 iFrame

// 防止 iFrame
function location_top(){
    if(top.location!=self.location){
        top.location=self.location;
        return false;
    }
    return true;
}
location_top();