form表单select的选项值选择
Posted wanan_01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了form表单select的选项值选择相关的知识,希望对你有一定的参考价值。
html:
<form action="">
<p>选择城市</p>
<p>
<select name="" id="cont">
<option value="北京" order="1">北京</option>
<option value="上海" order="2">上海</option>
<option value="广州" order="3">广州</option>
</select>
</p>
<p>
<input type="button" value="ok" id="btn"/>
</p>
</form>
js:
//方法一:取出想要的选项内容
var btn=document.getElementById("btn");
var cont=document.getElementById("cont");
btn.onclick=function(){
//alert(cont.value);
};
//方法二:取出想要的内容
btn.onclick=function(){
//先得到选择的索引值
var index=cont.selectedIndex;
//把option选项放到一个数组里
var arr=cont.options;
//从数组中取出某个索引的值
var text=arr[index].value;
var order=arr[index].getAttribute("order");
alert(order);
};
以上是关于form表单select的选项值选择的主要内容,如果未能解决你的问题,请参考以下文章
Rails 表单(选择/选项) - 如何用 HAML 标记选定的选项?
element 表单验证 el-form-item里面验证两个select 必填,select 值绑定为对象时如何验证必填
element 表单验证 el-form-item里面验证两个select 必填,select 值绑定为对象时如何验证必填