JQuery学习笔记

重新加载当前页面:

location.reload()这个方法有时候火狐不给力,

parent.location.reload();刷新父亲对象的页面常用与框架

location.reload()意思是从服务器端重新载入页面 ;

location.false(true)意思是从缓存中重新载入


个人建议使用location.href="";

注意$((".test:hidden").length)表示的是隐藏的class类名为test的元素个数
$((".test :hidden").length)表示的是类名为test的隐藏的所有子元素

${pageContext.request.contextPath}与<%=request.getContextPath()%>
${pageContext.request.contextPath}是通过get方法去取的,先是pageContext.getRequest()得到
HttpServletRequest对象,再调用HttpServletRequest的getContextPath方法()。
<% %>pageContext.getRequest.getContextPath()没这个属性。所以EL中用<%=request.getContextPath()%>

${pageContext.request.contextPath}与${ctx}
${pageContext.request.contextPath} 每一次都去请求范围找 绝对路径的值
<c:set var="ctx" value="${pageContext.request.contextPath}"/>  把绝对路径的值以key-value 的形式存在请求范围
${ctx} 按优先级pageContext 、request、session、application
查找名字时ctx的值也就时绝对路径的值
css中的display: none:此元素不会被显示 block:此元素将显示为块级元素,
元素后有 换行符 inline:默认,此元素会被显示为内联,
元素后没有换行符 inline-block:行内块元素 run-in此元素会根据上下文作为块级或者内联元素显示 list-item此元素会作为列表显示 
:eq()选择器选取带有指定index值的元素 title:鼠标放上去之后会显示title内容、  History.go(-1)和History.back();
这种情况返回后参数会消失,解决办法就是加 <input type="hidden" autocomplete="off" class="" value="">

你可能感兴趣的:(JQuery学习笔记)