html-输入标记下拉列表未显示以前输入的值

时间:2014-07-20 04:04:25

标签: html html5

表单中的输入标记未显示以前输入值的建议

<form target="temp" method="post" action="">
                    <input id="UserID" name="UserID" type="text" placeholder="User ID" autocomplete="on" spellcheck="false">
                    <input id="Password" type="password" placeholder="Password" spellcheck="false">
                    <input type="button" value='Submit' onclick="login();">
</form>

发生的事情是:

enter image description here

我希望它是:

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以通过向input提供name,让大多数浏览器显示先前在input字段中输入的值。

先将input更改为:

<input id="UserID" name="UserID" type="text" placeholder="User ID" spellcheck="false">

<强>更新

不确定onClick功能正在做什么,但......

type="button"更改为type="submit"

<input type="submit" value='Submit' />