Web Developer's Room
HOME > DHTML サンプル集 > 基本編     

基本編

コンボボックスで選択された行を調べる

<html>
<body>

<select id="cbo1">
    <option>AAA
    <option>BBB
    <option>CCC
</select>

<input type="button" value="クリック" onclick="alert(document.all.cbo1.selectedIndex)">

</body>
</html>

 サンプル




スポンサードリンク


(C) Web Developer's Room All rights reserved.