当前位置: 代码迷 >> J2EE >> 设置下拉框默认值解决思路
  详细解决方案

设置下拉框默认值解决思路

热度:109   发布时间:2016-04-22 02:49:40.0
设置下拉框默认值
能不能在只知道下拉框的<option>value 属性的情况下 来在<script></script> 里 写这个方法 来设置 这个下拉框的默认值?

------解决方案--------------------
JScript code
    function check(){        var sel = document.getElementById("abc");//abc为你的select的id            for(var i=0 ;i<sel.options.length;i++){            if(sel.options[i].value==你知道的value){                sel.options[i].selected=true;            }        }    }
------解决方案--------------------
探讨
JScript code


function check(){
var sel = document.getElementById("abc");//abc为你的select的id
for(var i=0 ;i<sel.options.length;i++){
if(sel.options[i].value==你……
  相关解决方案