09 2013 档案
摘要:background-attachment: fixed 随着页面的滚动轴背景图片不会移动background-attachment: scroll 随着页面的滚动轴背景图片将移动background-attachment:inherit继承background-color:背景颜色background-image:背景图片background-position:背景图片的位置 (注:位是从左上角x,y方向开始的)background-repeat:背景平铺 repeat(完全平铺) repeat—x(方向) repeat-y(y方向) no-repeat (不平铺)border:表示边框 如
阅读全文
摘要:string strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filename + ";Extended Properties='Excel 8.0;HDR=NO;IMEX=1; '"; OleDbConnection conn = new OleDbConnection(strCon); conn.Open(); //返回Excel的架构,包括各个sheet表的名称,类型,创建时间和修改时间等 DataTable dtSheetName = conn.Ge...
阅读全文
摘要:拖动层效果 拖动层TF... View Code 拖动层效果拖动层TF...
阅读全文
摘要:在Javascript中,每个函数都有一个隐含的对象arguments,表示给函数实际传给的参数 ,那么我们可以用 arguments来实现函数的重载javascript函数重载列子
阅读全文