这是我的代码,我将 HTML5 用于我的搜索逻辑:
<form style="padding-top: 15px; margin-bottom:-15px" onsubmit="location.href='/search/' + document.getElementById('userInput').value; return false;" />
<input id="userInput" style="width:150px; padding: 5px; margin: 0 5px; font-size: 90%;" type="text" value="" onclick="this.value=''" />
<input style="width:80px; height: 25px; font-size: 90%;" type="submit" value="Search" />
</form>
提交后如何在字段中显示用户输入的搜索值?我觉得有一个 HTML5 标签 - 但不确定......