码迷,mamicode.com
首页 >  
搜索关键字:hide    ( 2565个结果
积累的一些代码片段/小知识
★jQuery1.7.2下操作object元素报错jQuery1.7.2下,用$选择器操作object元素会报错:代码如下:$('object').hide();换用原生js就没事了:document.getElementsByTagName('object')[0].style.display =...
分类:其他好文   时间:2014-08-07 12:39:29    阅读次数:166
Android 内部API (com.android.internal)和隐藏API(@hide)概述
内部API和隐藏代码的例子在翻阅Android源码的时候有时会遇到一些奇怪的代码,例如下面这个://注:这段代码在源码android/provider/Telephony.java中。 importandroid.util.Patterns; importcom.android.internal.telephony.SmsApplication; importjava.util.HashSet; //……..
分类:移动开发   时间:2014-08-07 07:19:40    阅读次数:489
Android学习路线(十)如何将Action Bar叠放在你的布局上
By default, the action bar appears at the top of your activity window, slightly reducing the amount of space available for the rest of your activity's layout. If, during the course of user interaction, you want to hide and show the action bar, you can do s...
分类:移动开发   时间:2014-08-07 03:07:19    阅读次数:344
OpenERP-隐藏多对多域弹出列表视图的"新建"按钮(Hide the "Create" button from the popup list view of a many2many field)
隐藏多对多域的弹出列表视图中的“新建”按钮,如例: Hiding the "Create" button from the popup list view of a many2many field. Example shown as below: 1. 在.py文件中定义many2many的field: 1. Define a many2many field in the pytho...
分类:其他好文   时间:2014-08-06 01:59:20    阅读次数:273
HDU 3988 Harry Potter and the Hide Story(数论-整数和素数)
题目大意: 给定n和k, 求 n! 能被 k^i 整除时,i 的最大取值。 解题思路: 将k分解质因素,问题变为,(1×2×3×...×n) 要被 ( p1^(i*a1) × p2^(i*a2) × ... × pn^(i*an) ) 整除,即分子中各分母的质因数的幂次要大于等于分母。 所以根据k的各质因素,求出满足各质因数的幂次 分子>=分母 的关系限制i,算出最大的i即可。 这题要用到unsigned long long,比较坑。。...
分类:其他好文   时间:2014-08-03 18:08:25    阅读次数:299
点击隐藏
$("#closes").click(function(){ $("#wxdown").hide(); $("#h50").hide(); });
分类:其他好文   时间:2014-08-01 18:54:32    阅读次数:120
HDU 3988 Harry Potter and the Hide Story(数论-整数和素数)
HDU 3988 Harry Potter and the Hide Story(数论-整数和素数) 题目大意: 给定 n和k , 求 n! % k^i 等于0时,i 的最大取值是多少? 解题思路: 将 k分解质因素,n也根据k的质因素求出关系限制i,最后算出最大的i即可。...
分类:其他好文   时间:2014-07-31 17:14:37    阅读次数:220
jquery效果
jQuery hide() 和 show()通过 jQuery,您可以使用 hide() 和 show() 方法来隐藏和显示 HTML 元素:$("#hide").click(function(){$("p").hide();});$("#show").click(function(){$("p")...
分类:Web程序   时间:2014-07-31 13:12:16    阅读次数:196
jquery学习
$("选择器").clink单击dbmouse 双击hide 隐藏$(".div.ex").perances(".div").hide("slow")perance 祖 parents父mouseenteredmouseleavermousedownmouseupmousehover 悬浮focus...
分类:Web程序   时间:2014-07-30 23:23:25    阅读次数:254
关于 Android 中未公开的类(用@hide隐藏的类)
关于 Android 中未公开的类(用@hide隐藏的类)摘自:http://wangsheng2008love.blog.163.com/blog/static/78201689201142643413482/如果你查看过Android的源代码,会发现源码中有很多类都有@hide的标志,那么这个标...
分类:移动开发   时间:2014-07-30 20:05:34    阅读次数:267
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!