<!DOCTYPE?html>
<html>
<head>
????<meta?charset="UTF-8">
????<title>复选框</title>
????<script?src="jquery.min.js"></script>
</head>
<body>
????<form?action="">
????????...
分类:
其他好文 时间:
2014-09-24 17:11:17
阅读次数:
165
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content...
分类:
其他好文 时间:
2014-09-23 13:12:15
阅读次数:
222
无向图欧拉回路 欧拉通路
#include
#include
using namespace std;
struct edge
{
int v, next, b, id;
}e[210];
int vis[210];
int first[10], cnt;
int ans[210], len;
int f[10];
int find(int x)
{
if(x != f[x])
...
分类:
其他好文 时间:
2014-09-22 12:32:52
阅读次数:
234
$str=preg_replace("/\s+/", " ", $str); //过滤多余回车$str=preg_replace("//si","",$str); //注释$str=preg_replace("//si","",$str); //过滤DOCTYPE$str=preg_replace(...
分类:
Web程序 时间:
2014-09-22 00:36:41
阅读次数:
273
一、概述除了正常运行模式,ECMAscript 5添加了第二种运行模式:"严格模式"(strict mode)。顾名思义,这种模式使得Javascript在更严格的条件下运行。设立"严格模式"的目的,主要有以下几个: - 消除Javascript语法的一些不合理、不严谨之处,减少一些怪异行为; .....
分类:
其他好文 时间:
2014-09-21 17:25:40
阅读次数:
226
第二章 1.内容类型:“text/html”。DOCTYPE声明:。指定字符编码: 2.不允许写结束标记的元素有:area,base,br,col,command,embed,hr,img,input,keygen,link,meta,param,source,track,wbr 可以省略结...
分类:
Web程序 时间:
2014-09-19 13:29:15
阅读次数:
303
问题现象:定义了DOCTYPE的页面 当表格的内容比div的高度还要高时,div会出现滚动条,同时在IE6和IE7下会出现问题: IE6:此时table的100%宽度还是没有滚动条那是的宽度,出现滚动条后,div的可视宽度减少,导致横向滚动条也出现了,而且横向能滚动的长度正好是滚动条的宽度。 IE7...
分类:
其他好文 时间:
2014-09-19 11:47:55
阅读次数:
157
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content...
分类:
其他好文 时间:
2014-09-18 13:25:44
阅读次数:
227
感谢自学IT网的燕十八老师 <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale...
分类:
Web程序 时间:
2014-09-18 09:57:24
阅读次数:
325
1. [代码][Java]代码 CSS对浏览器的兼容性有时让人很头疼,或许当你了解当中的技巧跟原理,就会觉得也不是难事,从网上收集了IE7,6与Fireofx的兼容性处理技巧并整理了一下。对于web2.0的过度,请尽量用xhtml格式写代码,而且DOCTYPE 影响 CSS 处理,作为W3C的标准....
分类:
Web程序 时间:
2014-09-17 18:14:52
阅读次数:
325