當button在form表單時,點擊button會自動觸發button的默認事件,也就是刷新當前頁面。那麼如何阻止呢:orm
有兩種方式:事件
一:將<button></button>改成<input type="button"> 或者直接在<button>中添加屬性 type="button".input
二:在button的點擊事件中io
$('btn').click(function(e){event
e.preventDefult();function
.......form
.......cli
});表單
阻止冒泡top
function sss(event){
event.stopPropagation();
}