Why does the reset button on html forms not reset hidden fields?

非 Y 不嫁゛ 提交于 2020-11-27 04:55:36

问题


I discovered something surprising:

<html>
<head>
<script type="text/javascript">
function f()
{
document.getElementById("h").value++;
document.getElementById("x").value++;
}
</script>
</head>
<body>

<form>
<input type="hidden" name="hidden" id="h" value="5"/>
<input type="text" id="x" value="5"/>
<input name='clear' type='reset' id='clear' value='Clear'>
</form>

<button type="button" onclick="f()">Increment</button>
<button type="button" onclick="alert(document.getElementById('h').value)">Show hidden</button>

</body>
</html> 

Trying this in Firefox 4.0.1, clicking clear always resets the text input to 5, but never resets the hidden field.

I (and others) did not expect this behavior at all: we expected the hidden value to get reset too!

Can anyone point to either documentation or specs that explain why the hidden input is treated differently by the reset button?

Explanations as to why such behavior is desirable are also welcome.


回答1:


FWIW, I think I can put together the full story from the answers and comments.

Usage rationale: The clear button is intended for clearing user input, and since hidden inputs are not directly accessible by the user, it doesn't make sense to allow the user to reset the hidden input's value.

Documentation and behavior: The bug report that AR pointed out is explicit about what is happening: The hidden field's value's mode is default, as is intended in the specs.
Particularly, this means that changing the value (as in the sample code in the question) changes the default value, and the reset button resets input fields to the default value, hence there is no change.
The behavior for the text input is different (even though its value is also changed programmatically) because its value's mode is not default but value, which means that there is a distinction between the default value of the input and the current value.




回答2:


The user can't see or modify the hidden field, therefore it wouldn't make any sense for them to be able to clear it by pressing a button.




回答3:


When clicking on reset, the browser goes and check the default value in the DOM tree, not in the HTML page.

Your Javascript modifies the DOM. You should try to replace your RESET button with a custom button that calls a Javascript that does two things:

  • reset normally.
  • set the hidden field to 5.



回答4:


I came here because I bumped into this same issue. However, upon further reflection it is (usually) a very desired behavior.

The hidden field is most commonly used for storing information that was sent by the server when the page loaded.

Although, it can also be used by the script to enter some runtime-calculated entries, resetting hidden fields can cause trouble when not intended.



来源:https://stackoverflow.com/questions/6367793/why-does-the-reset-button-on-html-forms-not-reset-hidden-fields

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!