一、问题描述:
有时候我们发会现自己的网站页面被别人调用并且一模一样,这个其实就是简单的iframe调用了,下面我来给大家介绍js防止页面iframe调用的方法总结吧,有需要的朋友可参考
二、解决方法:
防止自己的网页被人框架:
top.location.href
最上层的地址
windows.location.href自己的地址
self指代当前窗口对象,属于window最上层的对象
location.href
指的是某window对象的URL地址.
self.location.href指当前窗口的URL地址,去掉self默认为当前窗口的URL地址
复制代码
代码如下:<script
type="text/javascript">
if(top.location
!=
self.location){
top.location
=
self.location//防止页面被框架包含
}
</script>
这些方法都可行,但不是太可靠。
复制代码
代码如下:<script
language="javascript">
if(
top.location
!=
self.location)
top.location.href=self.location.href
</script>
或
复制代码
代码如下:<script
language="javascript">
if
(top.location
!=
location)
top.location.href
=
location.href
</script>
或
复制代码
代码如下:<script
language="javascript">
if
(top.location
!=
self.location)
{top.location=self.location}
</script>
或
复制代码
代码如下:<script
language="javascript">
if
(top.frames.length!=0)
top.location=self.document.location
</script>
希望本文所述对大家的javascript程序设计有所帮助。
1、在父页面访问Iframe子窗体的txtAddress控件window.frames["ifrMapCompanyDetails"].document.all("txtAddress").value = '地址'
2、在Iframe子窗体1访问父页面的TextBox1控件 , 子窗体1把值赋给子窗体2的某个控件
string strValue = "从子窗体传递给父页面的值"
下面是在Page_Load事件里面调用的,当然可以写在javascript脚本里面
this.Response.Write("<script>parent.document.all('TextBox1').value = '" + strValue + "'</script>")
this.Response.Write("<script>if( parent.document.all('TextBox2').value = '0')parent.document.all('TextBox1').value = '44'</script>")
3、子窗体访问父窗体中的全局变量:
parent.xxx
4、在Iframe子窗体1访问子窗体2的txtAddress控件 子窗体1把值赋给子窗体2的某个控件
window.parent.frames["ifrMapCompanyDetails"].document.all("txtAddress").value = '地址'
父窗体提交两个Iframe子窗体
window.frames["ifrMapCompanyDetails"].Form1.submit()
window.frames["ifrMapProductInfoDetails"].Form1.submit()
Iframe子窗体 调用父页面的javascript事件
window.parent.XXX()
//父页面调用当前页面中IFRAME子页面中的脚本childEvent
function invokechildEvent()
{ var frm = document.frames["ifrChild1"].childEvent()}
或者调用当前页面中第一个IFRAME中的脚本childEvent
{ var frm = document.frames[0]frm.childEvent()}
//子页面调用父窗体的某个按钮的按钮事件
window.parent.Form1.btnParent.click()
父页面调用子窗体的某个按钮的按钮事件
window.frames['ifrChild1'].document.all.item("btnChild3").click()
//jquery 部分:
1.在父窗口中操作 选中IFRAME中的所有单选钮
$(window.frames["iframe1"].document).find("input[@type='radio']").attr("checked","true")
2.在IFRAME中操作 选中父窗口中的所有单选钮
$(window.parent.document).find("input[@type='radio']").attr("checked","true")