html select 不可选 jquery

html select 不可选 jquery
$.fn.selectReadOnly=function(){
        var tem=$(this).children('option').index($("option:selected"));
        $(this).change(function(){
              $(this).children('option').eq(tem).attr("selected",true);
        });
    }
    $("select:[readonly='readonly']").selectReadOnly();

你可能感兴趣的:(html select 不可选 jquery)