iframe选择父元素的方法和js跳出iframe的方法

来源:互联网 发布:seo实战什么意思 编辑:程序博客网 时间:2024/05/29 12:41

iframe选择父元素的方法:

        $('#userName', window.parent.document).text(nickname);

js跳出iframe的方法:

         if (top.location !== self.location) {
                 sessionStorage.removeItem("sysuser");
                 top.location = "login.html";//跳出框架,并回到首页
         }

阅读全文
0 0
原创粉丝点击