HTML
- html 空格問題
- 強制刷新頁面秋度,走服務(wù)器請求
onclick="window.location.reload()"
- chrome中取消密碼緩存下拉框
autocomplete="new-password"
jQuery
- 一些方法有參為setter炸庞,沒參為geteer,例如:
JqueryObject.val("setter");//setter方法
var value = JqueryObject.val();//getter方法
- jQuery選擇器需要 [i] 后才能 .checked = true
//html部分
<input class="hh" type="radio" name="nn">hello</input>
<input type="radio" name="nn">world</input>
//js部分
$(".hh")[0].checked = true;
//$(".hh").checked = true; 不起作用
alert($(".hh")[0].checked);
//alert($(".hh")[0].checked); 不起作用
- 將事件注冊到document級別荚斯,使js動態(tài)添加的新標(biāo)簽也能觸發(fā)事件
$(document).on("click",".class-name",function(e){
//do something
});
- 綁定hover事件
// 使能標(biāo)簽的hover效果埠居,新增加標(biāo)簽都需要調(diào)用該方法
function resumeHover(){
//當(dāng)鼠標(biāo)移動到一個匹配的元素上面時,會觸發(fā)指定的第一個函數(shù)事期。
//當(dāng)鼠標(biāo)移出這個元素時滥壕,會觸發(fā)指定的第二個函數(shù)。
$(".class-name").hover(function() {
//do something
},function() {
//do no hovered something
})
}
- hover效果的另一種實現(xiàn)
//監(jiān)聽鼠標(biāo)的over刑赶、out事件
$(document).on("mouseover mouseout",".classname",function(e){
if(e.type == "mouseover"){
//do something
}else{
//do something
}
})
- 監(jiān)聽瀏覽器大小的改變
$(window).resize(function(){
alert($(this).height());
});
JavaScript
- 數(shù)字轉(zhuǎn)字母
String.fromCharCode(i+65); //得到A
Thymeleaf
- 界面首次加載捏浊,javascript中使用model的值
<script th:inline="javascript">
/*<![CDATA[*/
var user = /*[[${user}]]*/'';
/*]]>*/
</script>