码迷,mamicode.com
首页 >  
搜索关键字:hide    ( 2565个结果
文件上传时用window弹窗第二次以后fieldLabel值显示重复
今天在项目中遇到一个棘手的问题,在上传附件的时候,window弹窗,第一次的时候是正常的,win.hide() 后,第二次fieldLabel值会重复显示,如下图: 因为window窗口中只有“附件”重复了,“备注”字段没有重复,所以怀疑是因为“附件”的写法有问题 “附件”字段对应的代码如下,用的   inpuType:'file' name : "u...
分类:Windows程序   时间:2015-07-20 23:47:32    阅读次数:237
A geometric interpretation of the covariance matrix
A geometric interpretation of the covariance matrixContents[hide]1Introduction2Eigendecomposition of a covariance matrix3Covariance matrix as a linear...
分类:其他好文   时间:2015-07-20 22:48:32    阅读次数:127
jquery动画总结
基本动画show() //直接显示元素,没有动画show(speed, [callback]) //有动画,有回调函数hide() //直接隐藏元素,没有动画hide(speed, [callback]) //有动画,有回调函数toggle() //切换可见状态toggle(speed, [call...
分类:Web程序   时间:2015-07-18 22:37:52    阅读次数:161
html5小游戏基础知识
显示一个DIV和隐藏一个DIV 首先,我们要显示一个DIV和隐藏一个DIV需要使用css里面使用: .hide{display:none;} .show{display:block;}在需要显示或隐藏的DIV输入: ------------------...
分类:Web程序   时间:2015-07-18 16:56:49    阅读次数:127
[delphi技术]隐藏/显示任务栏-程序不在任务显示-全面控制Windows任务栏
1.隐藏任务条var h:THandle;//变量h:=FindWindow('Shell_TrayWnd',nil);ShowWindow(h,SW_hide); 2.显示任务条h:=FindWindow('Shell_TrayWnd',nil);ShowWindow(h,SW_SHOW); 3....
分类:Windows程序   时间:2015-07-17 15:59:14    阅读次数:279
元素查找显示隐藏
这是a标签span标签js实现方法:function onMouse(obj){//鼠标显示隐藏 $(obj).find("span").show(); }function outMouse(obj){//鼠标显示隐藏 $(obj).find("span").hide(); }
分类:其他好文   时间:2015-07-17 00:24:23    阅读次数:106
Visible Ops
Link:http://www.wikisummaries.org/Visible_Ops Contents[hide]1What is ITIL?2Introduction3Phase One: Stabilize the Patient4Phase Two: Catch & Release an...
分类:其他好文   时间:2015-07-15 18:29:33    阅读次数:139
jquery砸金蛋 高仿阿里旅游砸金蛋
function zadan(obj) { ? ? $(obj).children("span").hide(); ? ? eggClick($(obj)); }; function donghua() { ? ? $("#hammer").animate({ ? ? ? ? top : "150px", ? ? ? ? left : "420px" ? ? ...
分类:Web程序   时间:2015-07-14 13:52:32    阅读次数:229
Use jQuery to hide a DIV when the user clicks outside of it
http://stackoverflow.com/questions/1403615/use-jquery-to-hide-a-div-when-the-user-clicks-outside-of-it$(document).mouseup(function (e){ var contain...
分类:Web程序   时间:2015-07-13 20:07:01    阅读次数:146
jQuery 让DIV显示后延时几秒后消失
①最常用的方法②第二种方法(未测试)a.delay函数式jQuery1.4.2新增函数b.hide函数里必须带有参数0,不然不起作用
分类:Web程序   时间:2015-07-13 17:36:41    阅读次数:335
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!