# 表单
# 阻止表单提交
- 设置action为javascript返回空
action: 接收请求的URL
The URL that processes the form submission. This value can be overridden by a formaction attribute on a <button>
, <input type="submit">
, or <input type="image">
element.
<form action="javascript:;">
...
</form>
1
2
3
2
3
- 设置onsubmit事件,返回false
<form onsubmit="return false">
...
</form>
1
2
3
2
3
- 在JS中监听submit事件,阻止事件默认行为
const form = document.getElementsByTagName('form')[0];
form.addEventListener('submit',function(e) {
e.preventDefault();
});
1
2
3
4
2
3
4
← 概览