The simplest HTML code is as follows:
<Input id = "name" id = "csdn" value = "java2000.net"/> in Firefox, if you change the content of the form, click Refresh, you will find that the value in the text box is not returned to the original value, but the modified value.
There are two kinds of guesses
1 Firefox buffered the page and found that the file has not changed, so the page remains unchanged.
2 Firefox automatically fills in the information you just filled in for you, similar to the automatic table filling function
Test shows that even if the code is modified
<Meta http-equiv = "Pragma" content = "no-Cache">
<Meta HTTP-EQUIV = "cache-control" content = "no-Cache">
<Meta HTTP-EQUIV = "expires" content = "mon, 22 Jul 2002 11:12:01 GMT">
<Input id = "name" id = "csdn" value = "java2000.net"/> is invalid because the file content is changed, but the text box still does not return the original value.
The first option may be excluded.
Second, the automatic table filling function is found when Firefox is enabled, but the selection box in front of it is not selected. It does not appear here.
The search found that this problem was still quite common and found the answer on the Firefox website.
Http://developer.mozilla.org/en/docs/How_to_Turn_Off_Form_Autocompletion
Modify the text box
<Input id = "name" value = "java2000.net">
For a single field, you can write it on the field. For the entire form, you can write it on the form.
<Form name = "form1" id = "form1" method = "Post" # javasExamples/ajax Columns