当前位置 : 主页 > 网络编程 > JavaScript >

select.txt

来源:互联网 收集:自由互联 发布时间:2021-06-30
select.txt /** * select 初始化 * @param selectId * @param optionValue */function selectInitByOptionValue(selectId, optionValue) { var select = document.getElementById(selectId); for (var i = 0; i select.options.length; i++) { if (select.
select.txt
/**
 * select 初始化
 * @param selectId
 * @param optionValue
 */
function selectInitByOptionValue(selectId, optionValue) {
    var select = document.getElementById(selectId);
    for (var i = 0; i < select.options.length; i++) {
        if (select.options[i].value == optionValue) {
            select.options[i].selected = true;
            break;
        }
    }
}
网友评论