gpt4 book ai didi

javascript - Oracle apex,在每个字段必须为空的情况下禁用提交页面按钮,如何?

转载 作者:行者123 更新时间:2023-12-01 03:57:19 25 4
gpt4 key购买 nike

如何为按钮指定 ID?您将如何影响按钮的属性来禁用和启用它,具体取决于字段是否为空。我不想使用动态 Action 。我在想 JavaScript。任何帮助都会有所帮助。谢谢。

最佳答案

这就是你给出id的方式到 button :

<input type="button" id="your-id" value="My Button">

假设我们正在讨论的领域是

<input type="text" id="another-id">

这是启用/禁用 button 的方法当您在 input 中输入一些文本时(您需要将 Javascript 代码编写为 <script> 标记的内部文本):

<script type="text/javascript">
$(function() { //Load event
$("#another-id").change(function() { //change event
if ($(this).val().length > 0) { //It is not empty
$("#your-id").removeAttr("disabled");
} else { //It is empty
$("#your-id").attr("disabled", true);
}
});
});
</script>

关于javascript - Oracle apex,在每个字段必须为空的情况下禁用提交页面按钮,如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42536203/

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