例子:向列表内添加数据

Posted 带你疯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了例子:向列表内添加数据相关的知识,希望对你有一定的参考价值。

<select id="sel" style="width:200px;" size="10">
 <option>11</option>
    <option>22</option>
    <option>33</option>
</select>
<input type="text" id="nr" />
<input type="button" value="添加" id="btn1" onclick="Add()" />

 

 

<script type="text/javascript">

function Add()

{  

  //取出用户输入的值

   var v = document.getElementById("nr").value;    

  //向列表里面添加

   var list = document.getElementById("sel");  

   list.innerhtml += "<option>"+v+"</option>";   

  alert(document.getElementById("sel").value);

}

 

</script>

以上是关于例子:向列表内添加数据的主要内容,如果未能解决你的问题,请参考以下文章

向 UItableview 添加行并在 Viewcontroller 之间传递数据

从元组列表中向现有数据框添加值

通过网页向DB内添加数据

向数据绑定下拉列表中添加另一项。

Python学习2--列表

向数据框添加索引。 Pyspark 2.4.4 [重复]