摘要:
描述: 问题解决了,采用的手势拖动显示剩余内容,并不是有了横向滚动条 在head标签中加入 阅读全文
摘要:
1.col-md-push-3 :向右移动3 2.col-md-pull -9 : 向左移动9 3.clearfix: 清除元素浮动问题 4. col-md-offset-3: 向右偏移 5.pull-left :元素浮动到左边 6..close:显示关闭按钮 7.caret : 显示下拉式功能 8 阅读全文
摘要:
A a = new A(); B b = new B(); //将A的属性拷贝到B上 BeanUtils.copyProperties(a,b) 阅读全文
摘要:
public ModelAndView query(){ ModelAndView modelAndView = new ModelAndView(); List list = new ArrayList(); list.add("小明"); modelAndView.addObject("list 阅读全文
摘要:
在web.xml中配置:(用eclipse工具,可以在创建filter的时选择,web.xml中的配置可以自动生成) <filter> <display-name>LoginFilter</display-name> <filter-name>LoginFilter</filter-name> <f 阅读全文
摘要:
String email = form.getEmail(); if(!email.matches("^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((\\.[a-zA-Z0-9_-]{2,3}){1,2})$")){ (邮箱错误) } 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="../js/angular-1.3.0.js" ></script> </head> <bo 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="../js/angular-1.3.0.js" ></script> </head> <bo 阅读全文
摘要:
<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title>360安全换机</title> <style type="text/css"> *{ margin: 0; padding: 0; } li{ list-style: none; 阅读全文
摘要:
angular.lowercase(aaa); angular.uppercase(bbb); angular.isString(); angular.isNumber(); angular.isArray(); angular.forEach(arr,function(value,index){} 阅读全文