JavaScript实现js添加dom元素(以下拉框为例子)

效果图:

也可以根据自己的需要更改下拉框的值
JavaScript实现js添加dom元素(以下拉框为例子)

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body> 
		 
		<input type="button" id="" value="添加" onclick="add()" />
		<div id="sel">
			
		</div>
		<script type="text/javascript">
			function add(){
				var select=document.createElement("select");
				var op1=document.createElement("option");
				op1.value="1801";
				op1.innerText="移动互联";
				select.appendChild(op1);
				document.getElementById("sel").appendChild(select)
			}
		</script>

		
	</body>
</html>

上一篇:Cadence OrCAD Cpature创建Title Block


下一篇:记【antd组件Dropdown】使用时的小bug:报错信息:cannot read property 'appendChild' of null