今天在项目中遇到一个棘手的问题,在上传附件的时候,window弹窗,第一次的时候是正常的,win.hide() 后,第二次fieldLabel值会重复显示,如下图:
因为window窗口中只有“附件”重复了,“备注”字段没有重复,所以怀疑是因为“附件”的写法有问题
“附件”字段对应的代码如下,用的 inpuType:'file'
name : "u...
A geometric interpretation of the covariance matrixContents[hide]1Introduction2Eigendecomposition of a covariance matrix3Covariance matrix as a linear...
分类:
其他好文 时间:
2015-07-20 22:48:32
阅读次数:
127
基本动画show() //直接显示元素,没有动画show(speed, [callback]) //有动画,有回调函数hide() //直接隐藏元素,没有动画hide(speed, [callback]) //有动画,有回调函数toggle() //切换可见状态toggle(speed, [call...
分类:
Web程序 时间:
2015-07-18 22:37:52
阅读次数:
161
显示一个DIV和隐藏一个DIV 首先,我们要显示一个DIV和隐藏一个DIV需要使用css里面使用: .hide{display:none;} .show{display:block;}在需要显示或隐藏的DIV输入: ------------------...
分类:
Web程序 时间:
2015-07-18 16:56:49
阅读次数:
127
1.隐藏任务条var h:THandle;//变量h:=FindWindow('Shell_TrayWnd',nil);ShowWindow(h,SW_hide); 2.显示任务条h:=FindWindow('Shell_TrayWnd',nil);ShowWindow(h,SW_SHOW); 3....
这是a标签span标签js实现方法:function onMouse(obj){//鼠标显示隐藏 $(obj).find("span").show(); }function outMouse(obj){//鼠标显示隐藏 $(obj).find("span").hide(); }
分类:
其他好文 时间:
2015-07-17 00:24:23
阅读次数:
106
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
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
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
①最常用的方法②第二种方法(未测试)a.delay函数式jQuery1.4.2新增函数b.hide函数里必须带有参数0,不然不起作用
分类:
Web程序 时间:
2015-07-13 17:36:41
阅读次数:
335