leftAdd0(){ var value=this.form.inputNum; var inputNum=this.form.inputNum.replace(/\s+/g,'') var reg=/^[\d\s]+$/; if(!reg.test(value) && inputNum){ th ...
分类:
其他好文 时间:
2020-07-28 17:27:01
阅读次数:
80
// 1. 数据库数据 // { // "avatar": { // 集合(表名) // "data": [ // 数据 // { // "_id": "1", // "alias": "john", // "region": "asia", // "scores": [40, ...
分类:
数据库 时间:
2020-07-27 23:57:42
阅读次数:
100
前言 $Kruscal$的进一步应用以及$set$去重应用,输入输出没翻译,练习一下英语水平吧~~(其实是懒得搞)~~(逃 题目描述 Farmer John has been taking an evening algorithms course at his local university, a ...
分类:
其他好文 时间:
2020-07-27 23:44:44
阅读次数:
70
前端直接截取字符串 背景 在实际开发过程中,我们有可能会遇到需要展示数据库字段,但是当字段的内容比较长的时候就有可能出现前端样式的失样的效果: 解决: <td> <span id="email" th:text="${notice.content}" style="display: block;wh ...
分类:
其他好文 时间:
2020-07-27 16:01:19
阅读次数:
83
##题面 Problem Description There are n cities and m bidirectional roads in Byteland. These cities are labeled by 1,2,…,n, the brightness of the i-th cit ...
分类:
其他好文 时间:
2020-07-27 09:21:33
阅读次数:
88
题目描述 输入格式 输出格式 题目翻译 John有n个任务要做,每个任务在做之前要先做特定的一些任务。 输入第一行包含两个整数n和m,其中1<=n<=100。 n表示任务数,而m表示有m条任务之间的关系。 接下来有m行,每行包含两个整数i和j,表示任务i要在j之前做。 当读入两个0(i=0,j=0) ...
分类:
编程语言 时间:
2020-07-26 15:24:57
阅读次数:
53
<script type="text/javascript"> // 定了一个类 class Person{ // 定义一个构造方法 constructor(name,age){ console.log('父类构造方法') this.name=name; this.age=age; } // 定义普 ...
分类:
其他好文 时间:
2020-07-26 15:14:02
阅读次数:
50
基本的表格 table表示HTML文档的表格;tr表示表格中的行;td表示表格中的单元格 表头单元格 th元素表示表头单元格,用来区分数据和对数据的说明。可以在一行中混合使用td和th元素,也可以让一行包含清一色的th元素 表头和表格主体 tbody元素表示构成表格主体的全体行 thead元素用来标 ...
分类:
其他好文 时间:
2020-07-26 01:12:15
阅读次数:
104
//引入命名空间 xmlns:th="http://www.thymeleaf.org" //用th:<prop>替换<prop>属性的值 <h4 th:text="${hello}" ></h4> 1 Fragment inclusion th:insert th:replace 2 Fragme ...
分类:
其他好文 时间:
2020-07-26 00:03:15
阅读次数:
114
<!DOCTYPE html> <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> <head> <th:block th:include="i ...
分类:
其他好文 时间:
2020-07-25 23:29:12
阅读次数:
69