阻止表单提交刷新页面的问题
Posted 风无心客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阻止表单提交刷新页面的问题相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1"><meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>
Marker Animation
</title>
<style type="text/css">
html, body, #map, #form1 {
margin: 0;
padding: 0;
width: 100%;
height: 80%;
}
body, div, ul, li {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<form method="post" id="form1">
<button id="start-animation">Start Animation</button>
<script>
var startButton = document.getElementById(‘start-animation‘);
function startAnimation() {
event.preventDefault();
}
startButton.addEventListener(‘click‘, startAnimation, false);
</script>
<form>
以上是关于阻止表单提交刷新页面的问题的主要内容,如果未能解决你的问题,请参考以下文章
vue + element ui 阻止表单输入框回车刷新页面
reactjs preventDefault() 不会阻止表单提交时页面重新加载