hello world!!!!!

写下自己的一些心得,写下自己问题的方式,写下程序之路的艰辛,希望能够有朝一日成为大牛。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

jquery 设置select 默认值

Posted on 2015-09-15 16:57  陈力  阅读(1246)  评论(0编辑  收藏  举报

$('#@(Perfix)OrgType').children("option").each(function () {
var temp_value = $(this).val();

if (temp_value == "1") {
$(this).attr("selected", "selected");
}
});