Possible bug with <select>

后端 未结 3 1997
走了就别回头了
走了就别回头了 2021-02-05 14:06

Chrome Version (type about:Version 28.0.1491.0 canary and 26.0.1410.65 Google Chrome): Operating System (Mac OS X Mountain Lion): The problem only occurs with Chrome Canary and

3条回答
  •  南方客
    南方客 (楼主)
    2021-02-05 14:54

    Simple jQuery workaround.

    $(document).ready(function () {
        $("select").each(function () {
            $(this).val($(this).find('option[selected]').val());
        });
    })
    

提交回复
热议问题