gpt4 book ai didi

javascript - 我应该使用哪种方法来禁用按钮

转载 作者:行者123 更新时间:2023-12-01 02:48:53 24 4
gpt4 key购买 nike

这是用于数字验证的JS代码,当数字长度等于9或10时按钮被禁用,并且仅当我由于“keyup”方法而在输入表单中写入内容时才起作用。在我编写的脚本的开头比按钮应该被禁用,但它不起作用,当我进入网站时他被启用。

 add_shortcode('custom_js_for_cf7','custom_js_for_cf7');
function custom_js_for_cf7($args){
return
<script>
document.getElementById("przycisk").disabled = true;
document.getElementById("numertel").addEventListener("keyup",
function() {
var numerlength = this.value.length;
if (numerlength == 10 || numerlength == 9)
document.getElementById("przycisk").disabled = false;
else
document.getElementById("przycisk").disabled = true;
});
</script>
';
}

进入网站时应该使用哪种方法禁用按钮?我尝试了 onload 和 load 但也不起作用。

最佳答案

I wrote than button should be disabled but it doesnt work,he is enabled when I enter site.

将禁用部分放入文档DOMContentLoaded事件监听器中。

document.addEventListener("DOMContentLoaded", function() {
document.getElementById("przycisk").disabled = true;
});

关于javascript - 我应该使用哪种方法来禁用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47095892/

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