码迷,mamicode.com
首页 >  
搜索关键字:window-top opener parent self parent与opener的区别    ( 21313个结果
qt mvc2
继续上次的例子,对于list才说只有行,讨论列是没有意义的。 bool insertRows(int row, int count, const QModelIndex &parent); bool removeRows(int row, int count, const QModel...
分类:Web程序   时间:2014-05-27 01:25:29    阅读次数:296
easyui dialog遮罩层
当dialog在一个iframe里时,此dialog的遮罩层也会只覆盖这个iframe,要想覆盖整个页面,就把dialog写到最外层的父页面中去,此时dialog的遮罩层会自动覆盖整个页面,若需要从子页面去获取父页面的dom对象,用parent.window.$(" ")的形式。
分类:其他好文   时间:2014-05-27 01:12:58    阅读次数:267
父div高度不能根据子div高度自动变化的解决方案
1 2 3 当content内容多时,即使parent设置了高度100%或auto,在不同浏览器下还是不能完好的自动伸展。解决方案如下:1 2 3 4 在层的最下方产生一个高度为1的空格,可解除这个问题。 另外还有这样写的:或者。
分类:其他好文   时间:2014-05-27 00:44:54    阅读次数:253
gdb调试多进程和多线程命令
转自:gdb调试多进程和多线程命令1. 默认设置下,在调试多进程程序时GDB只会调试主进程。但是GDB(>V7.0)支持多进程的分别以及同时调试,换句话说,GDB可以同时调试多个程序。只需要设置follow-fork-mode(默认值:parent)和detach-on-fork(默认值:on)即可...
分类:数据库   时间:2014-05-23 23:01:03    阅读次数:470
IOS NSNotificationCenter 通知的使用
1.注册通知[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(notify) name:@"myNotify" object:nil];-(void)notify{ NSLog(@"notify");}....
分类:移动开发   时间:2014-05-23 10:02:56    阅读次数:306
UIActionSheet添加多个otherButtonTitles
关于UIActionSheet,我们经常用到的就是 UIActionSheet *actionSheet = [[UIActionSheet alloc]initWithTitle:@"请选择" delegate:self cancelButtonTitle:@"取消"destructiveButtonTitle:@"确定" otherButtonTitles:@"1",@"2",@...
分类:其他好文   时间:2014-05-22 09:51:25    阅读次数:385
3.addView调用之后导致子布局的android:layout_width="match_parent"属性或者 android:layout_width="fll_parent"属性无效。
典型错误案例:         经常我们会通过addView方法,动态添加一些子布局,比如下面的一段代码. LinearLayout linParent = (LinearLayout) findViewById(R.id.aty_slider_linParent);View vChild = mInflater.inflate(R.layout.view_loding, null);linP...
分类:移动开发   时间:2014-05-22 09:41:22    阅读次数:553
js把div固定在页面的右下角
http://www.ablanxue.com/prone_2866_1.htmlwindow.parent.onscroll = window.parent.onresize = window.onload =function () { var oFix_box = doc...
分类:Web程序   时间:2014-05-20 07:52:20    阅读次数:448
day10_python学习笔记_chapter13_面向对象编程
1. class NewClass(parent): def .... 如果没有父类, 则默认继承object类2. 类属性访问(类似java中的静态属性和方法)直接用类名.属性名, 在python中, 如果没有创建实例, 方法不能被调用。方法必须绑定到一个实例才能直接被调用。 cla...
分类:编程语言   时间:2014-05-19 15:40:08    阅读次数:258
android自定义View (一)MeasureSpec
A MeasureSpec encapsulates the layout requirements passed from parent to child. Each MeasureSpec represents a requirementfor either the width or the h...
分类:移动开发   时间:2014-05-19 12:46:36    阅读次数:395
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!