js怎么添加一个下拉列表的值
做个<inputtype="text"/>点下按钮就在<select>中添加一个<option>这里就是text的值</option>求高手解答...
做个<input type="text"/>
点下按钮就在<select>中添加一个<option>这里就是text的值</option>
求高手解答 展开
点下按钮就在<select>中添加一个<option>这里就是text的值</option>
求高手解答 展开
9个回答
展开全部
<script>
function add(){
document.getElementById("sl").options.add(new Option(document.getElementById("txt").value));
}
</script>
<input type="button" onclick="add()" />
<input id="txt" />
<select id="sl"></select>
function add(){
document.getElementById("sl").options.add(new Option(document.getElementById("txt").value));
}
</script>
<input type="button" onclick="add()" />
<input id="txt" />
<select id="sl"></select>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
</head>
<script language="javascript">
function cselect()
{
var t = document.getElementById("inputt").value;
var m = "<select><option value='1'>"+t+"</option></select>";
s.innerHTML=m;
}
</script>
<body>
<table>
<tr>
<td>
<input type="text" id="inputt"/>
</td>
<td>
<input type="button" value="submit" onclick="cselect()"/>
</td>
</tr>
<tr>
<td>
<div id="s">
<select>
<option></option>
</select>
</div>
</td>
</tr>
</table>
</body>
</html>
<head>
</head>
<script language="javascript">
function cselect()
{
var t = document.getElementById("inputt").value;
var m = "<select><option value='1'>"+t+"</option></select>";
s.innerHTML=m;
}
</script>
<body>
<table>
<tr>
<td>
<input type="text" id="inputt"/>
</td>
<td>
<input type="button" value="submit" onclick="cselect()"/>
</td>
</tr>
<tr>
<td>
<div id="s">
<select>
<option></option>
</select>
</div>
</td>
</tr>
</table>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用<input type="text"/>的onclick方法,触发一个JS方法add(),
在add方法中提取text的value值,动态的加到select下边
在add方法中提取text的value值,动态的加到select下边
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
var op=new Object();
op.oSelect=document.formName.selectName;
op.cNodes=function(text,value){//创建option
this.oSelect.options[this.index]=new Option(value,text);
};
op.oSelect=document.formName.selectName;
op.cNodes=function(text,value){//创建option
this.oSelect.options[this.index]=new Option(value,text);
};
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |