0
這裏是我的代碼,我使用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標籤 - 但不確定...
你如何從url中檢索搜索變量?你使用任何服務器端腳本? – showdev