復制代碼 代碼如下:
<!DOCTYPE html>
<html>
<head>
<title>select.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link type="text/css" href="./styles.css">-->
</head>
<body>
<select id = "myCourse" onchange = "getCourse();">
<option value = "" selected>--請選擇一門課程--</option>
</select>
<textarea id = "myares" rows="10" cols="30"></textarea>
<script type="text/javascript" type = "text/javascript">
<!--
var last_select_num = 3;//加入從數據庫中查詢
//動態添加第一門課程
var myOption = document.createElement("option");
myOption.value = "java";
myOption.text = "java";
myCourse.add(myOption);
//動態添加第二門課程、
myOption = document.createElement("option");
myOption.value = "oracle";
myOption.text = "oracle";
myCourse.add(myOption);
//動態添加第三門課程、
myOption = document.createElement("option");
myOption.value = "javaEE";
myOption.text = "javaEE";
myCourse.add(myOption);
function getCourse(){
myares.value += "你選擇了:"+myCourse.value +"/r/n";
}
-->
</script>
</body>
</html>
新聞熱點
疑難解答
圖片精選