引言 在写前端的时候经常用到js或jquery语法,有时候傻傻分不清,现在将学习过程中遇到的总结一下。 $(function(){ })的使用 JQuery 的代码我们通常会包裹在一个$(function(){})函数中,jq 的$(function(){})也就是$(document).ready ...
分类:
其他好文 时间:
2021-02-15 12:18:54
阅读次数:
0
包机制 为了更好地组织类,Java提供了包机制,用于区别类名的命名空间 包语句的语法格式为: package pkg1[.pkg2[.pkg3...]]; 一般利用公司域名倒置作为包名;com. kuang .www 为了能够使用某一个包的成员,我们需要在Java程序中明确导入该包。使用"impor ...
分类:
其他好文 时间:
2021-02-15 12:01:45
阅读次数:
0
JS数据类型 基本数据类型 number string boolean undefined null 复杂数据类型/引用数据类型 array object function window.onload = function(){ var str = 'abc'; var num =123; var ...
分类:
Web程序 时间:
2021-02-10 13:42:28
阅读次数:
0
本章考情分析 本章作为《税法》课程的开篇之章,介绍的是税法基础知识,就考试而言为非重点章。 考试中题型均为选择题,一般情况单选题、多选题各一题,分值在 2.5 分左右。 本章结构 本章内容结构:7 节 第一节 税法概念★ 第二节 税法原则★ ★ ★ 第三节 税法要素★ 第四节 税收立法与我国税法体系 ...
分类:
其他好文 时间:
2021-02-10 13:28:15
阅读次数:
0
安装好Tomcat9之后,执行./start.sh启动时没有报错,但是在浏览器中打不开Tomcat的页面。而且在执行./shutdown.sh关闭服务器时报告了这样一个错误:
Tomcat9 Error: Could not find or load main class org.apache.ca... ...
分类:
Web程序 时间:
2021-02-10 13:16:40
阅读次数:
0
This time, you are supposed to find $A+B$ where $A$ and $B$ are two polynomials. Input Specification: Each input file contains one test case. Each cas ...
分类:
其他好文 时间:
2021-02-10 13:03:20
阅读次数:
0
Given the root of a binary tree, return the leftmost value in the last row of the tree. Example 1: Input: root = [2,1,3] Output: 1 Example 2: Input: r ...
分类:
其他好文 时间:
2021-02-10 12:54:11
阅读次数:
0
如果需要选择紧接在另一个元素后的元素,而且二者有相同的父元素,可以使用相邻兄弟选择器 <div class="test"> <h3>我是h3标签</h3> <p>11111</p> <p>22222</p> </div><style> h3+p { color: red; } </style> ~作 ...
分类:
Web程序 时间:
2021-02-09 12:26:28
阅读次数:
0
Linux系统的硬链接和软连接是有很多区别的。 1.本质区别: 硬链接本质上是同一个文件 软连接本质上不是同一个文件 先查看硬链接: 首先,使用ll /data/test/passwd.txt查看passwd.txt文件的硬链接属性,这是发现硬链接数为1 ll /data/test/passwd.t ...
分类:
系统相关 时间:
2021-02-09 12:12:47
阅读次数:
0
#creation:2021-02-02#Define variabledate=`date +%Y%m%d`basedir=/data2/backup#Create cd $basedirmkdir rmanbak0_$date#delete expire document#find $based ...
分类:
其他好文 时间:
2021-02-09 11:53:37
阅读次数:
0