人本善良

导航

11 2012 档案

c#获取系统语言及版本信息
摘要://当前操作系统是否为简体中文public static bool IsChineseSimple(){ return System.Threading.Thread.CurrentThread.CurrentCulture.Name == "zh-CN";}//当前操作系统是否为繁体中文public static bool IsChineseTW(){ return System.Threading.Thread.CurrentThread.CurrentCulture.Name == "Zh-TW";}//当前操作系统是否为英语(美国)public 阅读全文

posted @ 2012-11-27 11:20 简简单单2018 阅读(4047) 评论(0) 推荐(0)

jquery 三级联动
摘要:function refreshAreaInfo() { var provinceId = $("#DropDownListProvince").val(); $.ajax({ type: "get", contentType: "application/json;utf-8", url: "AjaxForm.aspx?id=" + provinceId, //这里是要传递的参数,格式为data:"{paraName:paraValue}" dataType: "json", 阅读全文

posted @ 2012-11-01 23:23 简简单单2018 阅读(185) 评论(0) 推荐(0)