分类:class属性//http://www.jquery123.com/category/manipulation/class-attribute/ .addClass();为每个匹配的元素添加制定的样式类名//http://www.jquery123.com/addClass/ 1:.addCl ...
分类:
Web程序 时间:
2017-08-01 11:12:46
阅读次数:
190
$("#codeId").addClass("error"); $("#codeId").html("登录名不能为空"); 判断进行校验登录名为空时,提示信息红色"登录名不能为空",效果未出现的原因: 1、确定jquery已引入并起效 2、确定选择的id是正确的 3、$("#codeId").htm ...
分类:
Web程序 时间:
2017-07-31 13:32:00
阅读次数:
272
问题描述:当输入框在最底部时,点击软键盘后,输入框会被遮挡。解决方案:在input的focus事件中触发window的resize事件。 问题描述:页面弹窗有一个输入框,input获得焦点时,弹出的输入键盘会把弹层挤上去,有可能导致弹层一部分被隐藏。解决方案:在input的focus事件中触发win ...
分类:
其他好文 时间:
2017-07-30 21:59:40
阅读次数:
140
首先我在Genymotion官网上并没有找到他的安装程序。据说是在注冊后,通过邮件里的链接下载,结果也没有看到。最后详细在哪下的,忘了收藏。我下的是 genymotion-2.5.3-vbox.exe是genymotion和vbox的捆绑安装包(用百度搜一搜,CSDN上也是有的) 假设要vbox和g ...
首先从官网下载ZooKeeper压缩包,然后解压下载得到的ZooKeeper压缩包,发现有“bin,conf,lib”等文件夹。“bin文件夹”中存放有执行脚本。“conf文件夹”中存放有配置文件。“lib文件夹”中存放有执行所须要第三方库。 一、standalone模式 1.1、编辑配置文件 在“ ...
分类:
其他好文 时间:
2017-07-29 20:51:52
阅读次数:
225
添加或修改class:addClass(name); 移除类:removeClass(name); 以上方法可以定义函数,不过返回值需要有一个或多个类名。 $('#demo').addClass(function(index,className){ return 'red'; }) $('#demo ...
分类:
Web程序 时间:
2017-07-29 17:16:26
阅读次数:
182
歇息了好几天,最终又開始学习了.jQuery? JQuery is designed to change the way that you write JavaScript.The focus of jQuery is "find some elements, do something with t ...
分类:
Web程序 时间:
2017-07-29 16:42:02
阅读次数:
221
addClass和removeClass eg: $("button").addClass("animated bounce"); $(".well").addClass("animated shake"); $("#target3").addClass("animated fadeOut"); $ ...
分类:
其他好文 时间:
2017-07-29 16:27:03
阅读次数:
127
局部变量自己主动俘获 偶然在调试中发现,performSelector 方法具有自己主动俘获变量的特性。试看例如以下代码: CGFloat c = _addViewShowing ? 0 : 80; if([self respondsToSelector:@selector(jsq_setToolb ...
分类:
其他好文 时间:
2017-07-29 15:16:22
阅读次数:
168
Class org.apache.hadoop.io.compress .CompressionCodecFactory A factory that will find the correct codec for a given filename. Method CompressionCodec ...
分类:
其他好文 时间:
2017-07-29 15:09:07
阅读次数:
166