gpt4 book ai didi

javascript - 事件阻止默认在 Firefox 中不起作用

转载 作者:行者123 更新时间:2023-12-03 10:09:11 24 4
gpt4 key购买 nike

这与这里的其他一些类似,但我认为在这种情况下我正确使用了 event.preventDefault() 。

这是我的 html:

 <input type="submit" id="submit" value="Setuju dan kirim" onclick="check_empty_2()">

在 Chrome 中,这就是工作。但在 Firefox 中,它不起作用。

这是我的代码:

function check_empty_2() {

if (document.getElementById('reg_nama').value == "" || document.getElementById('reg_email').value == "" || document.getElementById('reg_no').value == "" || document.getElementById('reg_rumah').value == "" ) {
alert("Harap isi semua bidang !");
} else {
document.getElementById('reg_rfid').style.display = "none";
document.getElementById('alert_rfid').style.display = "block";
$('html, body').animate({
scrollTop: $("#alert").offset().top - 150
});
event.preventDefault();
}

}

请更正我的代码,谢谢

最佳答案

您需要读取事件并将其作为参数传递

<input onclick="check_empty_2(event)" ...

function check_empty_2(event) {
...

关于javascript - 事件阻止默认在 Firefox 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30211920/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com