摘要: css常用的样式:1.float2.padding3.margin4.cursor5.list-style6.position7.border8.opacity9.background-color:red;10.ul11.li13.div14.table15.remove()16.addClass()17.attr()JQuery()操作类样式$("#btn").toggleClass()组合类 class="c1 c2"addClass()removeClass()hasClass()toggleClass()attr() 阅读全文
posted @ 2013-09-01 13:54 nieyulin 阅读(103) 评论(0) 推荐(0) 编辑
摘要: ☆☆☆☆ 阅读全文
posted @ 2013-09-01 12:23 nieyulin 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 1基础信息 @{ var data = ViewBag.Data as T_Suggest; }提案号:@data.Number主题词:@data.Subject 提案类型:@data.Category 提案时间:@data.CreateOn 提案标题:@data.Title 2发起人代表信息 @{ T_SuggestPeople suggest = null; foreach (var item in Model) { if (item.IsLeader == true) { suggest = item; } } }代表姓名:@suggest.Name工作单位和职务:@suggest.P. 阅读全文
posted @ 2013-08-22 16:26 nieyulin 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 做什么都要坚持,不管是做技术还是追女孩子,坚持很重要,这样可以很好的为自己的将来做打算。好好的对待程序,你就会得到很多东西,顶住压力,这才是最重要的,好好的对待这样学习的机会,这样就可以得到很多东西。人生需要不断的完美,这样才会得到很多东西! 阅读全文
posted @ 2013-08-20 20:39 nieyulin 阅读(143) 评论(0) 推荐(0) 编辑
摘要: var nav = document.getElementById("navin");var thisnum;for (var i = 0; i a').addClass('tree-parent tree-parent-collapsed'); //expanded at load tree.find(o.expanded).attr('aria-expanded', 'true').find('>a').removeClass('tree-parent-collapsed'). 阅读全文
posted @ 2013-08-20 09:24 nieyulin 阅读(321) 评论(0) 推荐(0) 编辑
摘要: public class ReceptionAreaRegistration : AreaRegistration { public override string AreaName { get { return "Reception"; } } public override void RegisterArea(AreaRegistrationContext context) { context.MapRoute( "Reception_default", "Reception/{controller}/{action}/{id}" 阅读全文
posted @ 2013-08-15 16:48 nieyulin 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 模糊度的匹配: opacity:0.5(其他浏览器)filter:alpha(opacity=20)(IE浏览器) 阅读全文
posted @ 2013-08-15 15:55 nieyulin 阅读(81) 评论(0) 推荐(0) 编辑
摘要: @{ var deptlist = (List)ViewBag.DeptList; foreach(var user in Model) { var deptname = ""; foreach(var dept in deptlist) { if (user.S_Dept_ID == dept.ID) { deptname = dept.Name; } } @(user.Account)(@user.Name) @deptname @user.FamilyMobile 编辑 } } 阅读全文
posted @ 2013-08-15 13:59 nieyulin 阅读(264) 评论(0) 推荐(0) 编辑
摘要: XMLHttpRequest是ajax的精华所在! 阅读全文
posted @ 2013-08-15 13:32 nieyulin 阅读(102) 评论(0) 推荐(0) 编辑
摘要: json: {name:"nieyulin",age;18} 阅读全文
posted @ 2013-08-15 13:31 nieyulin 阅读(89) 评论(0) 推荐(0) 编辑