自己的网站如果被其他人iFrame有时候会苦恼,今天跟大家分享一段防止自己的网站被iFrame的代码。
JavaScript代码
// 防止 iFrame
function location_top(){
if(top.location!=self.location){
top.location=self.location;
return false;
}
return true;
}
location_top();
(责任编辑:最模板) |