码迷,mamicode.com
首页 >  
搜索关键字:opener    ( 525个结果
Js实现子窗体给父窗体的元素赋值
假设父窗体有一个html标签元素的id为myCollectionWork,现在如果我想在子窗体中给这个元素赋值那么我们可以使用如下JS代码:$("#myCollectionWork", opener.document).html("(" + value+ ")");
分类:Windows程序   时间:2015-04-28 20:44:49    阅读次数:163
在sublime text 3中安装中文支持
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传染基础——JavaScript中的opener、iframe
最近研究XSS,根据etherDream大神的博客延长XSS生命周期写了一个子页面父页面相互修改的demo。一、 子页面、父页面相互修改——window.opener、window.open在父页面修改子页面,是用到了window.open函数:在子页面修改父页面的话,用到的是window.open...
分类:编程语言   时间:2015-04-12 20:56:16    阅读次数:174
JavaScript弹出窗口并且向父窗口输出内容代码
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(BOM&DOM)
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
Sublime Test3
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
window.parent与window.opener的区别与使用
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”/...
分类:Windows程序   时间:2015-03-21 18:47:52    阅读次数:211
常用JS
window.opener.location.reload(); 刷新上一个页面window.opener=null;window.open('','_self');window.close(); 关闭当前页面例子:刷新上一个页面并关闭当前页面alert('添加成功!');window.opener...
分类:Web程序   时间:2015-03-18 17:58:10    阅读次数:137
sublime text3插件
安装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
window.self ->window.top->window.parent
在应用有frameset或者iframe的页面时,parent是父窗口,top是最顶级父窗口(有的窗口中套了好几层frameset或者iframe),self是当前窗口, opener是用open方法打开当前窗口的那个窗口。window.self功能:是对当前窗口自身的引用。它和window属性是等...
分类:Windows程序   时间:2015-03-11 19:16:25    阅读次数:190
525条   上一页 1 ... 45 46 47 48 49 ... 53 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!