gpt4 book ai didi

javascript - 输入值属性可以定义为空吗?

转载 作者:行者123 更新时间:2023-12-02 15:51:23 24 4
gpt4 key购买 nike

我有以下代码:

<input type = "Text" value="" class="MyClass"/>

值可以声明为空吗?

在chrome调试器中,如下所示,看起来不正确

enter image description here

但是 onkeypress 事件永远不会被触发。我猜这是因为“值”属性看起来有点奇怪并导致它损坏,但我不确定。这在 Firefox 中有效。

最佳答案

是的,可以。

var myInput = document.getElementById('ourInput');

if(myInput.value.length == 0)
myInput.value = "Empty";

注意:myInput.value ==“”也会。

关于javascript - 输入值属性可以定义为空吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31831604/

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