let dataobj={}1. let arr = Object.keys(dataobj)if(arr.length 0){ console.log('空');}2. if(JSON.stringify(dataobj) "{}"){ console.log('空');}else{ consol ...
分类:
Web程序 时间:
2021-05-24 14:44:36
阅读次数:
0
以下是我对ajax做的一些总结,仅供记录,有不对的地方欢迎指正。 1, ajax的出现改变了网页交互方式,之前是更新网页需要重复加载整个网页,ajax出现之后,只需要根据需求请求,然后根据返回数据更改页面需要变更的地方,大大提高了网页性能。 2, ajax的使用形式: 实例化一个XMLHttpReq ...
分类:
Web程序 时间:
2021-05-24 14:38:13
阅读次数:
0
servlet中get和post请求的分发处理 package LWB; import javax.servlet.*; import javax.servlet.http.HttpServletRequest; import java.io.IOException; public class He ...
分类:
其他好文 时间:
2021-05-24 14:07:53
阅读次数:
0
#include <iostream> #include <cstring> #include <cmath> using namespace std; using ll=long long ; const int maxn=1e3+10; int dp[maxn][maxn]; int sum[m ...
分类:
其他好文 时间:
2021-05-24 13:59:03
阅读次数:
0
for i in range(1,10): for j in range(1,i+1): print(i,"*",j,"=",i*j, "\t",end="") else: print("") 1 * 1 = 1 2 * 1 = 2 2 * 2 = 4 3 * 1 = 3 3 * 2 = 6 3 * ...
分类:
编程语言 时间:
2021-05-24 13:38:54
阅读次数:
0
bool #布尔类型 True #真 False #假 l = [1,2,3,4] print( 1>2 ) #False print( 4 in l) #True print(1 not in l) #False print( len(l) > 3) #True 比如,想写个while的死循环,可 ...
分类:
其他好文 时间:
2021-05-24 13:31:59
阅读次数:
0
# print()# input()# len()# type()# int()# str()# list()# tuple()# dict()# set()# float()# id() # avg = sum(l) / len(l) #计算平均值# print(avg)# print( max( ...
分类:
编程语言 时间:
2021-05-24 13:23:00
阅读次数:
0
检查字符串(第一个参数 str)是否以给定的目标字符串(第二个参数 target)结束。这个挑战 可以 用 ES2015 引入的 .endsWith() 方法来解决。但在这个挑战中,请使用 JavaScript 的字符串子串方法。 1 function confirmEnding(str, targ ...
分类:
其他好文 时间:
2021-05-24 13:09:02
阅读次数:
0
比较运算符: == != < > <= >= 逻辑运算符 或与非 or and not x or y : x为true,则不计算y的值,直接返回ture x为false,则返回y的值 x and y: x为ture,则返回y的值, x为false,则不计算y,直接返回false x not y: x ...
分类:
编程语言 时间:
2021-05-24 12:45:55
阅读次数:
0
前言 很基础的一道树形DP题。 题目 AtCoder 题目大意: 给定一棵 \(N\) 个点的带权树,询问每个无序点对间的异或距离和。答案对 \(10^9+7\) 取模。 \(2\le N\le 2\times 10^5;0\le w_i\le 2^{60}.\) 讲解 先考虑边权是 \(0,1\) ...
分类:
其他好文 时间:
2021-05-24 12:25:02
阅读次数:
0