2015-12-17 60 views
0

我有一個html選擇列表,我用它來顯示很多選項。html選擇列表 - 當大小爲10時顯示選擇的值

我選擇的大小爲10,我使用的是autofocus

我如何dcisplay選擇列表,使所選擇的選項將顯示在頁面加載時,即使選擇的選項是不是在第一次10個選項,像這樣:

enter image description here

目前,加載網頁時,顯示如下的選擇列表(選項19中選擇,但不顯示):

enter image description here

這是我的選擇列表代碼:

<select id="id_preview_style_select" name="preview_style" title="Preview Style" size="10" autofocus> 
    .... 
    .... 
</select> 

回答

1

你應該添加選擇重點屬性所需的選項標籤

<select id="id_preview_style_select" name="preview_style" title="Preview Style" size="10" autofocus> 
    .... 

    <option value="10" selected focus> 20 </option> 

    .... 
</select> 

檢查出這個jsFiddle

+1

他說,它已經選定但列表不滾動到第19項。 – Shanoor

+0

當然哦...... :) - 編輯已經 –

+0

啊!非常簡單!謝謝。 – user1261774