株式会社CONFRAGEでは、在宅就労支援、トライアル雇用を行っております。
LAMP,LAPP系が得意な方、是非お待ちしております。
<html>
<head>
<title></title>
<script type="text/javascript"><!--
function a(){
if(document.getElementById("SELECT").value == "WIN"){
document.getElementById("text").value = "ウィンドウズ";
}else if(document.getElementById("SELECT").value == "MAC"){
document.getElementById("text").value = "マック";
}else if(document.getElementById("SELECT").value == "UNIX"){
document.getElementById("text").value = "ユニックス";
}else{
document.getElementById("text").value = "";
}
}
--></script>
</head>
<body>
<select name="OS" id="SELECT" onChange="a()">
<option value="">
<option value="WIN">Windows
<option value="MAC">Macintosh
<option value="UNIX">UNIX
</select>
<input type="text" id="text">
</body>
</html>