mount

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
js:
${BindComplaintType}
  ${BindReReason}
  function select(sltName,value){
   $("select[@name="+sltName+"] option").each(function(){
   if($(this).val() == value){
   $(this).attr("selected","selected");
   }
   });
  }

后台.cs
string strJS = "select('select','" + h["ComplaintType"].ToString() + "');";
mVh.Put("BindComplaintType", strJS);
string strJS1 = "select('select2','" + h["ReReason"].ToString() + "');";
mVh.Put("BindReReason", strJS1);//Return Reason
posted on 2011-12-12 11:04  http://guoyinfeng.info/  阅读(185)  评论(0编辑  收藏  举报