文章出處
文章列表
html 中select 標簽,有時會遇到需要設置默認的選項。
。在input 標簽中是這樣的
<input type="radio" name="happy" checked/> <input type="radio" name="happy" />
在select 標簽中是這樣的
<select name="k" > <option value="1" >1</option> <option value="2">2</option> <option value="3">3</option> <option value="4" selected=“selected”>4</option> </select>
文章列表
全站熱搜