1 回答

TA貢獻(xiàn)1909條經(jīng)驗(yàn) 獲得超7個(gè)贊
OP 通過添加以下代碼解決了該問題:
x.preventDefault();
從我收集的內(nèi)容來(lái)看,更新后的代碼看起來(lái)像這樣:
<button id="savebutton">Insert Record</button>
? ? ......
const save=document.querySelector("#savebutton");
? save.addEventListener("click",function(x) {
? x.preventDefault();?
? ? ? database.collection("vocabulary").add({
? ? ? ? word:"Book",
? ? ? ? meaning:"xxx",
? ? ? })
? ? ? .then(function() {
? ? ? ? console.log("Document successfully wriiten!");
? ? ? })
? ? ? .catch(function(error) {
? ? ? ? console.error("Error writing document: ", error);
? ? ? });
? ? });
因此,根據(jù)公共文檔,OP 阻止了“x”的默認(rèn)操作,解決了這個(gè)問題。
添加回答
舉報(bào)