var obj = document.getElementById(”select_id”); //selectid var index = obj.selectedIndex; // 选中索引 var text = obj.options[index].text; // 选中文本 var value = obj.options[index].value; // 选中值 JS如何取得SELECT选中的值(不是Value属性)? <select name="JobName" id=
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <tit
Range对象 Range 对象表示文档的连续范围区域,如用户在浏览器窗口中用鼠标拖动选中的区域. 最常见的Range是用户文本选择范围(user text selection).当用户选择了页面上的某一段文字后,你就可以把这个选择转为Range.当然,你也可以直接用程序定义Range. 如果一个实现支持 Range 模块,那么document就定义了createRange()方法调用它可创建新的 Range 对象. 注意:IE 定义了不兼容的 Document.createRange() 方法
```html<select ref="type" v-model="selectedvalue" > <option v-for="(item,index) in list " :value="item.value">{{item.text}}</option> </select>``````javascript var vm = new Vue({ el: '#app', d