展会信息港展会大全

动态添加option及createElement使用示例
来源:互联网   发布日期:2016-03-25 15:51:38   浏览:1145次  

导读:动态添加option在某些特殊的情况下还是比较实用的,本文有个小示例为大家介绍下createElement使用,感兴趣的朋友可以参考下代码如下:<!DOCTYPE html><html...

动态添加option在某些特殊的情况下还是比较实用的,本文有个小示例为大家介绍下createElement使用,感兴趣的朋友可以参考下

代码如下:

<!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 rel="stylesheet" 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 +"rn";

}

-->

</script>

</body>

</html>

赞助本站

人工智能实验室

相关热词: javascript js

AiLab云推荐
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港