html代码:

<div class="layui-inline">
    <select name="isStatus" id="isStatus">
        <option value="">是否启用</option>
        <option value="0">禁用</option>
        <option value="1" selected>启用</option>
    </select>
</div>

js代码:

/** 
 * 设置select控件选中 
 * @param selectId select的id值 
 * @param checkValue 选中option的值  
*/  
function set_select_checked(selectId, checkValue){  
    var select = document.getElementById(selectId);  
 
    for (var i = 0; i < select.options.length; i++){  
        if (select.options[i].value == checkValue){  
            select.options[i].selected = true;  
            break;  
        }  
    }  
}

使用:

// 设置select选中 禁用
set_select_checked('isStatus', '0');

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐