📅  最后修改于: 2022-03-11 15:03:54.289000             🧑  作者: Mango
//add event.preventDefault() example,
function clickHandler(event){
alert("Hey you clicked the submit button");
event.preventDefault();
}
//this will prevent the page from getting automatically refreshed after
//the submit button is hit.