假设父窗体有一个html标签元素的id为myCollectionWork,现在如果我想在子窗体中给这个元素赋值那么我们可以使用如下JS代码:$("#myCollectionWork", opener.document).html("(" + value+ ")");
1、安装package control
使用control+~打开终端,然后输入以下内容并确定:
import urllib.request,os;pf='Package Control.sublime-package';ipp=sublime.installed_packages_path();urllib.request.install_opener(urllib.request.b...
分类:
其他好文 时间:
2015-04-24 22:46:18
阅读次数:
154
最近研究XSS,根据etherDream大神的博客延长XSS生命周期写了一个子页面父页面相互修改的demo。一、 子页面、父页面相互修改——window.opener、window.open在父页面修改子页面,是用到了window.open函数:在子页面修改父页面的话,用到的是window.open...
分类:
编程语言 时间:
2015-04-12 20:56:16
阅读次数:
174
JavaScript弹出窗口并且向父窗口输出内容代码<script>functionopenWin(){myWindow=window.open(‘‘,‘‘,‘width=200,height=100‘);myWindow.document.write("<p>Thisis‘myWindow‘</p>");myWindow.focus();myWindow.opener.document.write("<p>Thisistheso..
分类:
编程语言 时间:
2015-04-06 18:55:49
阅读次数:
112
JavaWeb-04
JavaWeb-BOM&DOM
BOM
一、知识回顾
* BOM 概述
* BOM 的各个对象
* window对象
innerHeight,innerWidth
document.body.clientWidth,document.body.clientHeight,
self
opener:...
分类:
编程语言 时间:
2015-03-31 16:11:28
阅读次数:
283
importurllib.request,os;pf=‘PackageControl.sublime-package‘;ipp=sublime.installed_packages_path();urllib.request.install_opener(urllib.request.build_opener(urllib.request.ProxyHandler()));open(os.path.join(ipp,pf),‘wb‘).write(urllib.request.urlopen(‘http://..
分类:
其他好文 时间:
2015-03-21 21:27:34
阅读次数:
201
1、window.parent 是iframe页面调用父页面对象 举例: a.html <html>
<head><title>A</title></head>
<body>
<form?name=”form1″?id=”form1″>
<input?type=”text”?name=”username”?id=”username”/...
window.opener.location.reload(); 刷新上一个页面window.opener=null;window.open('','_self');window.close(); 关闭当前页面例子:刷新上一个页面并关闭当前页面alert('添加成功!');window.opener...
分类:
Web程序 时间:
2015-03-18 17:58:10
阅读次数:
137
安装package control Ctrl+~调出console,输入 import urllib.request,os; pf = ‘Package Control.sublime-package‘; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request...
分类:
其他好文 时间:
2015-03-17 14:28:37
阅读次数:
128
在应用有frameset或者iframe的页面时,parent是父窗口,top是最顶级父窗口(有的窗口中套了好几层frameset或者iframe),self是当前窗口, opener是用open方法打开当前窗口的那个窗口。window.self功能:是对当前窗口自身的引用。它和window属性是等...