我有一個搜索框,當客戶訪問我的網頁時,我想使其處於活動狀態。訪問網站時搜索框處於活動狀態。
我的HTML是:
<form class="form-search top-search" action="Search.aspx" onsubmit="return validateSearch(this);" method="GET">
<input type="text" class="input-medium search-query yui-ac-input" name="ss" id="ss" placeholder="Search and find it fast" title="Search and find it fast" onblur="if (this.value == '') { this.value = 'Search and find it fast'; }" onfocus="if ((this.value == 'Search and find it fast')||(this.value == 'Search and find it fast')) { this.value = ''; }" onkeypress="if ((this.value == 'Please enter a keyword or item #')||(this.value == 'Search and find it fast')) { this.value = ''; } else{ document.getElementsByName('ss')[0].style.color='black'; }" autocomplete="off">
<input type="submit" title="Search" class="btn btn-orange SearchButton" value="Search">
</form>
我只是想給用戶你默認進入該領域,怎麼樣亞馬遜默認到他們的搜索框。
什麼是積極的手段? –
如同在頁面加載時默認進入搜索字段。但只限於主頁。在產品頁面上沒有意義,因爲如果用戶在產品頁面上,那麼他們可能找到了他們想要的東西。聽起來很合邏輯,我想。 –