- 浏览: 310141 次
- 性别:
- 来自: 北京
最新评论
-
smilysas:
谢谢分享
intent intent-filter -
muzi131313:
TimeZone t = sdf.getTimeZone(); ...
Java 批量插入数据库(MySQL)数据 -
ebzhixulong:
那在插入过称中不满10000条的数据怎么处理的?
Java 批量插入数据库(MySQL)数据 -
oasis2008:
解释的很清楚。
intent intent-filter -
liuwei88212:
http://download.macromedia.com/ ...
jseclipse的安装以及中文问题
文章列表
<!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-Type" content="text/html; charset=ut ...
- 2008-11-27 14:00
- 浏览 2016
- 评论(0)
一、标签选择器:
顾名思议,标签选择器是直接将HTML标签作为选择器,可以是p、h1、dl、strong等HTML标签。如:
p { font:12px;}
em { color:blue;}
dl { float:left; margin-top:10px;}
二、id选择器:
我们通常给页面元素定义id ...
- 2008-11-27 11:55
- 浏览 942
- 评论(0)
使用无序列表:即UL
看一个最简单的例子:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
这是一个未加修饰的纵向列表
1:设置列表的边界
#base {
border: 1px solid #000;
margin: 2em;
width: 10em;
padding: 5px;
}
html中这样写,就会呈现一个带边框的无序列表
<div id=&q ...
- 2008-11-27 11:11
- 浏览 1442
- 评论(0)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /& ...
- 2008-11-27 10:46
- 浏览 927
- 评论(0)
What is that?
In case you haven't already used it, prototype.js is a JavaScript library initially written by Sam Stephenson. This amazingly well thought and well written piece of standards-compliant code takes a lot of the burden associated with creating rich, highly interactive web pages that charac ...
- 2008-11-26 18:02
- 浏览 1165
- 评论(0)
从 prototype.js 深入学习 javascript 的面向对象特性
js是一门很强大的语言,灵活,方便。 目前我接触到的语言当中,从语法角度上讲,只有 Ruby 比它更爽。
不过我接触的动态语言只有: js ruby python flash的as 简单的几门, 应该算是 ...
- 2008-11-26 17:11
- 浏览 774
- 评论(0)
<SCRIPT src="jquery.js" type=text/javascript></SCRIPT>
<script language="javascript" type="text/javascript">
$(document).ready(function()
{
$("#f>p").css("background","red");
$("#f p").css("fontSize&q ...
- 2008-11-26 16:26
- 浏览 730
- 评论(0)
<!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-Type" content="text/html; charset=gb ...
- 2008-11-26 14:14
- 浏览 902
- 评论(0)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" / ...
- 2008-11-25 12:57
- 浏览 863
- 评论(0)
<style type="text/css">
#xsnazzy {background: transparent; margin:1em;}
.xtop, .xbottom {display:block; background:transparent; font-size:1px;}
.xb1, .xb2, .xb3, .xb4 {display:block; overflow:hidden;}
.xb1, .xb2, .xb3 {height:1px;}
.xb2, .xb3, .xb4 {background:#fff; border-left:1px ...
- 2008-11-25 11:52
- 浏览 1773
- 评论(0)
如何使DIV居中,div垂直居中,div水平居中.
主要的样式定义如下:
body {TEXT-ALIGN: center;}
#center { MARGIN-RIGHT: auto; MARGIN-LEFT: auto; }
说明:
首先在父级元素定义TEXT-ALIGN: center;这个的意思就是在父级元素内的内容居中;对于IE这样设定就已经可以了。但在mozilla中不能居中。解决办法就是在子元素定义时候设定时再加上“MARGIN-RIGHT: auto;MARGIN-LEFT: auto; ”
需要说明的是,如果你想用这个方法使整个页面要居中,建议不要套在一个DIV里,你可 ...
- 2008-11-25 10:26
- 浏览 1738
- 评论(0)
package sun.common;
public class CharFormat {
/**
* 判断一个字符是Ascill字符还是其它字符(如汉,日,韩文字符)
*
* @param char
* c, 需要判断的字符
* @return boolean, 返回true,Ascill字符
*/
public static boolean isLetter(char c) {
int k = 0x80;
return c / k == 0 ? true : fal ...
- 2008-11-24 17:35
- 浏览 1292
- 评论(0)
a.nav1:link{
color:#FFFFFF;
text-decoration:none;
font-family:Arial, "宋体", sans-serif;
}
a.nav1:visited{
color:#FFFFFF;
text-decoration:none;
font-family:Arial, "宋体", sans-serif;
}
a.nav1:hover{
color:#FFFFFF;
text-decoration:none;
font-family:Arial, "宋体", sans-serif;
}
...
- 2008-11-24 15:06
- 浏览 1751
- 评论(0)
1. 长度限制
<script>
function test()
{
if(document.a.b.value.length>50)
{
alert("不能超过50个字符!");
document.a.b.focus();
return false;
}
}
</script>
<form name=a onsubmit="return test()">
<textarea name="b" cols="40" wrap="VIRTUAL" ro ...
- 2008-11-24 11:48
- 浏览 729
- 评论(0)