首页 > 代码库 > 零散技术整理

零散技术整理

   1      //渲染 下拉框被选中.
                     $("#processtyle option").each(function(){ 
                        if($(this).val() == procesStyle){ 
                        $(this).attr("selected",true) 
                        //$(this).attr("selected","selected")两者都可以选中 
                        } 
                     });

零散技术整理