一. jQuery基础及选择器 1.补充: jQuery是js的类库 (1)jQuery的设计思想:write less,do more (2)jQuery的优势: 1》体积小 2》强大的选择器 3》出色的DOM封装 4》可靠的事件处理机制 5》出色的浏览器兼容性 2.在页面中引入jQuery <s ...
分类:
Web程序 时间:
2020-07-11 19:20:05
阅读次数:
77
需求: 某软件的Log文件,其中的日期格式为'yyyy-mm-dd': ..... 2016-05-23 10:59:26 status upacked python3-pip.all 2016-05-23 10:59:26 status half-configured python3-all 20 ...
分类:
其他好文 时间:
2020-07-11 17:32:07
阅读次数:
45
算数运算符 var a = 3; var b = 4; document.write(a+b +"<br>"); document.write(a-b +"<br>"); document.write(a*b +"<br>"); document.write(a/b +"<br>"); docume ...
分类:
Web程序 时间:
2020-07-11 00:10:24
阅读次数:
949
Maximum Width of Binary Tree (M) 题目 Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maxim ...
分类:
其他好文 时间:
2020-07-10 10:11:00
阅读次数:
54
Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maximum width among all levels. The binar ...
分类:
其他好文 时间:
2020-07-10 10:07:44
阅读次数:
60
Given a binary tree, write a function to get the maximum width of the given tree. The width of a tree is the maximum width among all levels. The binar ...
分类:
其他好文 时间:
2020-07-10 09:54:38
阅读次数:
54
for (char i = 'A'; i <= 'Z'; i++) { //Response.Write(i.ToString() + "," + ((int)i).ToString()); } for (int i = 65; i < 91; i++) { //Response.Write((ch ...
package com.sjw.flink import org.apache.flink.api.scala._import org.apache.flink.core.fs.FileSystem.WriteMode object Score { def main(args: Array[Stri ...
分类:
其他好文 时间:
2020-07-10 00:22:58
阅读次数:
60
for(var i = 1; i<= 5; i++) { for(var j = 1; j<= 5; j++) { document.write("○"); } document.write("<br/>"); } ...
分类:
编程语言 时间:
2020-07-10 00:11:21
阅读次数:
81
(4)优化TCP编写 客服端上传图片,服务端给客服端发消息问好 此demo的在上一个的基础上实现客服端与服务器端互相发送消息给对方,提高数据的读与取的效率,首先要先启动服务端,否则报错,因为TCP是可靠协议,所以没有对应的服务端时会报错,发送数据为图片 一.编写TCP协议服务端 1 package ...
分类:
Web程序 时间:
2020-07-09 17:55:18
阅读次数:
88