摘要: $("#tip").css("display","none"); $("#tip").css("display","block"); 如果要兼容火狐和IE,不能写block,否则样式会乱。$("#tip").css("display",""); 直接写空就可以! jquery控制显隐 不占位置 $( 阅读全文
posted @ 2016-02-26 17:48 Mr.He多多指教 阅读(335) 评论(0) 推荐(0)
摘要: 数组操作 创建数组:var standTerm = new Array("维护","维修"); var arr = new Array(); 数组长度:length属性 数组中添加:push() 清空数组:arrName.length=0 字符串操作 去字符串最后一个字符: strName.subs 阅读全文
posted @ 2016-02-26 17:44 Mr.He多多指教 阅读(135) 评论(0) 推荐(0)
摘要: 经常在后台用一般处理程序(.ashx)来处理前台的ajax请求 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Web; using System.Web 阅读全文
posted @ 2016-02-26 15:07 Mr.He多多指教 阅读(212) 评论(0) 推荐(0)
摘要: 分页类(需要从数据库库得到的只有两个数据,一个要展示的数据列表,还有就是总记录数) using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NewProductIm 阅读全文
posted @ 2016-02-26 11:09 Mr.He多多指教 阅读(228) 评论(0) 推荐(0)