一句话总结
01.jQuery选择器返回的是一个列表
02.SQL、Like、拼接、注入:' or 'x' like '
03.web.xml中,listener元素位于所有的servlet元素之前以及所有的filter-mapping元素之后
04.
Collection
├List
│├LinkedList
│├ArrayList
│└Vector
│ └Stack
└Set
05.
Map
├Hashtable
├HashMap
└WeakHashMap
06.Data Structure Visualizations
07.JS 去首尾空格:var xxx = document.getElementById("xxx").value.replace(/^\s+|\s+$/g, "");
08.JS 返回前一页:
1.history.back()
2.history.go(-1) 返回两个页面:history.go(-2)
(3.window.history.forward() 返回下一页
4.window.history.go() 返回第几页,也可以使用访问过的URL)