<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TTT</title>
</head>
<body>
<form id="f" method="get">
<input type="text" placeholder="A">
<button type="submit">B</button>
</form>
<script>
document.getElementById('f').onsubmit = function (e) {
console.log(e);
const xhr = new XMLHttpRequest();
xhr.open('get', '', true);
xhr.send();
};
</script>
</body>
</html>
上面这段简短的代码,点击按钮,预期应该是在 console
里打印出提交事件,然后页面不刷新,结果 TM 每次点击按钮整个页面都刷新一次————
在 onsubmit
函数最后加上 return false
可以做到异步提交,不刷新网页。
但是,我很确定我以前实现的异步提交从来都没用过 return false
,不知道为什么这次突然就不行了,有没有大神能够回答?
return false
仍然成功的代码————function post_tab() {
// 提交标签打印数量
document.getElementById('work_form').onsubmit = function (e) {
e.preventDefault();
const xhr = new XMLHttpRequest(),
f = e.target,
formData = new FormData(f),
log = $('#print_log');
xhr.open('POST', f.action, true);
xhr.responseType = 'json';
xhr.onreadystatechange = function () {
if(xhr.readyState === 4 && xhr.status === 200){
const data = xhr.response;
console.log(data);
print_tab(data['qrs'], log[0]);
log.scrollTop(log[0].scrollHeight - log.height());
input_clean('input_qr');
}
};
xhr.send(formData);
}
}
该函数 post_tab
使用 onclick
绑定在提交按钮上————
<button class="btn btn-success form-control" onclick="post_tab()">开始打印</button>
return false
仍然能够异步提交不刷新网页呢?这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.