gpt4 book ai didi

javascript - HTML : Input type button - value equivalent to defaultValue

转载 作者:行者123 更新时间:2023-11-28 09:16:20 25 4
gpt4 key购买 nike

我需要更改 type="button"的输入值。另一个函数通过将“value”属性与“defaultValue”属性进行比较来检查其值是否已更改(但这不是重点......)。除了 type="button"的输入之外,这对于其他所有内容都适用。由于某种原因,浏览器也会更改默认值。但为什么呢?

注意:没有 jQuery!

这是一个简化的测试代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript">
function d(input)
{
alert("value: "+ input.value +"\ndefaultValue: "+ input.defaultValue);
}
</script>
</head>
<body>
<input type="button" value="0" onclick="d(this); this.value=1; d(this);" />
</body>
</html>

最佳答案

将d的定义直接放在全局作用域中:http://jsfiddle.net/UQTY2/34/

   window.d = function (input) {
alert("value: " + input.value + "\ndefaultValue: " + input.defaultValue);
}

关于javascript - HTML : Input type button - value equivalent to defaultValue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15601499/

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