`
sunxin1001
  • 浏览: 310141 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论
文章列表
<!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 ...
一、标签选择器:   顾名思议,标签选择器是直接将HTML标签作为选择器,可以是p、h1、dl、strong等HTML标签。如: p { font:12px;} em { color:blue;} dl { float:left; margin-top:10px;}   二、id选择器:   我们通常给页面元素定义id ...
使用无序列表:即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 ...
<!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" /& ...
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 ...
从 prototype.js 深入学习 javascript 的面向对象特性 js是一门很强大的语言,灵活,方便。 目前我接触到的语言当中,从语法角度上讲,只有 Ruby 比它更爽。 不过我接触的动态语言只有: js ruby python flash的as 简单的几门, 应该算是 ...
<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 ...
<!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 ...
1 通过js伪URL引入 JavaScript:alert("Hello World"); 2
<!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" / ...
<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 ...
如何使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里,你可 ...
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 ...
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; } ...
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 ...
Global site tag (gtag.js) - Google Analytics