08 2009 档案
摘要:function a(flag){ $("input[type='checkbox']").each(function(){ $(this).attr("checked", flag); }); } 改变select的text$("#ddlYeargroup")[0].options[0].text="ALL";其他参考 //$("#ddlStep").empty();//清空 //$("#dd...
阅读全文
摘要:问题描述:两个表a,ba中字段为:id,nameb中字段为:id,email,address查询语句:select a.*,b.* from a left join b on a.id=b.id结果为: id name sex id address email----------- -------------------------------------------------- -------...
阅读全文
摘要:在web服务器端开发中经常会遇到各种不同形式的path,而且经常记不清楚如何获取到某种特定格式,今天抽了点时间把常用的path获取方法与格式做了一个简单的对照表,以备日后查用。Request获取的信息Request.AppRelativeCurrentExecutionFilePath ~/SysOption/BillingSetup1.aspx Request.ApplicationPath /...
阅读全文