摘要: 在前端布局中使用绝对定位要注意: 绝对定位它脱离了文档流。后面的元素如果没事用绝对定位,那么它将处于绝对定位元素的下方。同时如果前面的元素也没有使用绝对定位。那么绝对定位的元素依然会排列 在后面,不会覆盖住。应为它只是脱离了他这个位置的文档流,并没有脱离整个文档流。(个人理解) 阅读全文
posted @ 2018-05-04 23:18 梦中的歌 阅读(601) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data.SqlClient;using System.Data; /// <summary>///DBHelp 阅读全文
posted @ 2018-05-04 22:51 梦中的歌 阅读(142) 评论(0) 推荐(0) 编辑
摘要: --Create Database school--go--use school--go--create table student--(--ID int IDentity(1,1) not null,--S_ID int primary key not null,--S_Name nvarchar 阅读全文
posted @ 2018-05-04 22:46 梦中的歌 阅读(105) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) { string data=@"{ID:7,Name:""测试5"",Sex:""男"",Like:""1121"",Data:""1111""}"; // string data = "1 阅读全文
posted @ 2018-05-04 22:44 梦中的歌 阅读(112) 评论(0) 推荐(0) 编辑