为了更简洁的讲解,我只书写关键代码,只写思路。 场景:对一个人的信息进行录入,然后展示出来。 思路: 1、登录信息录入 username, [text] gender, [radio] (female/male男女,必须保证name一致,默认选中请设置:chec...
分类:
其他好文 时间:
2015-01-26 15:02:21
阅读次数:
182
大家知道在 IE6中 是不支持 display:inline-block的属性的;那我们来看下IE6中 块元素和内敛元素显示的效果和解决兼容的方法: ?????? <style type="text/css"> ????*{ padding: 0; margin:0;} ????...
分类:
其他好文 时间:
2015-01-26 13:47:21
阅读次数:
257
让我们先看一下BOL里面对count(*)以及count(col)的说明:COUNT(*) 返回组中的项数。包括 NULL 值和重复项。COUNT(ALL expression) 对组中的每一行都计算 expression 并返回非空值的数量。expression除 text、image 或 nte...
分类:
数据库 时间:
2015-01-26 13:31:46
阅读次数:
236
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
数据库 时间:
2015-01-26 13:26:02
阅读次数:
272
CSS书写顺序 1.位置属性(position, top, right, z-index, display, float等) 2.大小(width, height, padding, margin) 3.文字系列(font, line-height, letter-spacing, color- text-align等) 4.背景(background, ...
分类:
Web程序 时间:
2015-01-26 12:06:25
阅读次数:
195
网上找到的源代码,分享给大家
jquery点击复选框触发事件给input赋值
* {
margin: 0;
padding: 0;
list-style-type: none;
}
a, img {
border: 0;
text-decoration: none;
}
body {
font: 12px/180% Arial, Helvetica, sans-serif, "新宋...
分类:
Web程序 时间:
2015-01-26 11:56:41
阅读次数:
164
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:
数据库 时间:
2015-01-26 11:39:13
阅读次数:
172
解决比较Oracle中CLOB字段问题Oracle中CLOB和BLOB字段虽说在开发中满足了存放超大内容的要求,但是在一些简单使用中确频频带来麻烦。CLOB中存放的是指针,并不能直接取到实际值。而SQLServer中的text字段就很方便,可以直接拿来与需要的字符串比对,象什么等于呀小于呀Like呀...
分类:
数据库 时间:
2015-01-26 10:10:52
阅读次数:
335
用到的工具:FireFox浏览器Sublime Text 2响应式布局定义:2010年,Ethan Marcotte提出,可查看原文;通俗地讲就是:百份比布局,根据不同设备显示不同布局;这次主要解决:传统的固定像数(px)相比:不同显示设备,使用不同布局。例如:PC屏幕,显示3栏;手机,显示为1栏;...
分类:
移动开发 时间:
2015-01-26 00:01:44
阅读次数:
228
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mandelbrot
{
class Program
{
static void Main(string[] ar...