CSS去除表单的默认样式; 去除文本框小蓝框; 去除文本框小红框; 去除多行文本框拖拽; /*去除*/ input{ border-radius: 0; } /*去除Chrome等浏览器文本框默认发光边框*/ input:focus, textarea:focus { outline: none; ...
分类:
Web程序 时间:
2020-12-01 12:00:36
阅读次数:
10
简介 MAT 是Memory Analyzer的简称,他是一宽功能强大的Java堆内存分析器。多用于查找内存泄露以及查看内存消耗情况。 基于Eclipse开发,是一款免费的Java性能分析功能 下载安装 https://www.eclipse.org/mat/downloads.php 分析dump ...
分类:
编程语言 时间:
2020-11-30 16:10:09
阅读次数:
11
Ilogger:包括实际执行记录日志操作的方法。 IloggerProvider:用于创建 ILogger 对象。 IloggerFactory:通过 ILoggerProvider 对象创建 ILogger 对象。 ILogger接口 要记录日志,需要使用 ILogger 接口 public in ...
分类:
Web程序 时间:
2020-11-30 15:30:50
阅读次数:
7
abstract class Geometry{ public abstract double getArea();} class Pillar{ Geometry bottom; double height; Pillar(Geometry bottom,double height) { this ...
分类:
编程语言 时间:
2020-11-30 15:24:40
阅读次数:
4
官方文档:https://www.django-rest-framework.org/tutorial/1-serialization/ 序列化 1.安装第三方包并注册到app pip install djangorestframework 注册app: INSTALLED_APPS = [ ... ...
分类:
其他好文 时间:
2020-11-30 15:22:24
阅读次数:
2
问题一:问题现象:[root@localhostgit-2.5.0]#autoconf无法执行:解决方案:[root@localhostgit-2.5.0]#yuminstall-yautoconf问题二:问题现象:[root@localhostgit-2.5.0]#make/usr/bin/perlMakefile.PLPREFIX=‘/usr/local/git‘INSTALL_BASE=‘‘
分类:
其他好文 时间:
2020-11-27 11:25:03
阅读次数:
7
需求描述: -数据分页 -搜索展示() -数据列排序、多列排序 -不想写接口 -支持自定义 缺点: 不适合大量数据展示:随着数据量的增加,页面渲染速度明显变慢 Tips: 大量数据还是采用数据库切片搜索较为妥当。 插件地址: https://www.datatables.net/ 效果测试: 基础配 ...
分类:
其他好文 时间:
2020-11-27 10:53:44
阅读次数:
4
简单应用 我们先来看一个简单的应用示例: <div id="app"> <input id="input" type="text" v-model="text"> <div id="text">输入的值为:{{text}}</div> </div> <script> var vm = new Vue ...
分类:
其他好文 时间:
2020-11-26 15:22:40
阅读次数:
14
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://cdn.staticfile.org/angular.js/1.4.5/angular.min.js"></script> </head> <bodt> ...
分类:
Web程序 时间:
2020-11-26 14:23:05
阅读次数:
9
distinctUntilChanged 过滤连续重复的事件 let ob = Observable.of(1, 1, 1, 3, 5, 7, 9, 9) ob.distinctUntilChanged().subscribe(onNext: { element in print(element) ...
分类:
编程语言 时间:
2020-11-25 12:36:02
阅读次数:
6