码迷,mamicode.com
首页 >  
搜索关键字:parent    ( 6866个结果
reincarnation server
- parent of all the drivers and servers- when a driver or server dies, RS collects it.- RS checks a table for action to take, e.g: restart it.- RS als...
分类:其他好文   时间:2014-09-06 15:58:53    阅读次数:214
session失效刷新后登录页面嵌入在iframe中的解决办法
在login页面中添加以下一段代码:var _topWin = window; while (_topWin != _topWin.parent.window) { _topWin = _topWin.parent.window; } if (window != _topWin)_topWin.do...
分类:其他好文   时间:2014-09-05 19:44:41    阅读次数:157
js中window.location.href解决target的问题
location是没办法设置target的。location就是本地本页的意思,只能设置本页的指向,如果界面中用到iframe那么可以这样: parent.frames["iframe的name"].window.loaction.href="a.jsp";...
分类:Windows程序   时间:2014-09-05 18:20:21    阅读次数:499
mysql学习之内、外连接语句
名词:内连接:自然连接,只有两个相匹配的行才能在结果集中显示外连接:左外连接、右连接、全外连接内连接,只显示满足where后条件的列 select a.*,b.* from a inner join b on a.id=b.parent_id左外连接,select a.*,b.* from a le...
分类:数据库   时间:2014-09-04 23:31:30    阅读次数:323
题目1035:找出直系亲属
1 秒内存限制:32 兆特殊判题:否提交:1892解决:764题目描述: 如果A,B是C的父母亲,则A,B是C的parent,C是A,B的child,如果A,B是C的(外)祖父,祖母,则A,B是C的grandparent,C是A,B的grandchild,如果A,B是C的(外)曾祖父,曾祖母,则A,...
分类:其他好文   时间:2014-09-04 18:59:29    阅读次数:165
数据库去O整理
一、oracle递归查询语句startwith...connectbyprior① 给你一张表,表里面有主键id,以及该项的父节点parent_id,查询出该表中所有的父子关系节点树?Oracle:startwith...connectbyprior例如:对分类下的所有组图(包括子分类下的组图)列表...
分类:数据库   时间:2014-09-04 13:16:09    阅读次数:412
Android笔记:SlidingDrawer
一、概述抽屉控件,官方已不建议用;但在某些需求下直接使用这个控件还是相当方便的。<SlidingDrawer android:id="@+id/drawer" android:layout_width="match_parent" android:layout_height="match_parent" android:handle="@+id/handle" android:content="@+id/content"&g..
分类:移动开发   时间:2014-09-03 18:25:48    阅读次数:349
WebView无法放大缩小解决方案
先看看我们之前所写的代码 1) 添加权限:AndroidManifest.xml中必须使用了许可"android.permission.INTERNET" 2) 使用了一个WebView组件 android:id="@+id/wv"    android:layout_width="fill_parent"    android:layout_height="...
分类:Web程序   时间:2014-09-03 15:00:36    阅读次数:302
ifram,framset 互相调用JS
window.parent.frames["Indexbanner3"].aa();http://blog.163.com/wenchangqing_live/blog/static/17372230920113312828213/对于框架的跳转可以为:1:window.parent.frames[...
分类:Web程序   时间:2014-09-03 12:43:36    阅读次数:171
跳出iframe
首先我们了解一下:window.location.href、location.href、self.location.href、parent.location.href、top.location.href他们的区别与联系,简单的说:几种location.href的区别 js实现网页被iframe框架功...
分类:其他好文   时间:2014-09-02 15:46:14    阅读次数:189
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!