`
文章列表
var as = Object.create({x:1,y:2}); alert(as.x); var nullObj = Object.create(null);//创建一个没有原型的新对象,但是通过这种方式创建对象不会继承任何东西,甚至不包括基础方法,比如:toString();也就是说不能使用“+”运算符一起正确工作 var commObj = Object.create(Object.prototype);//创建一个普通的空对象,如:{} or new Object()创建对象;这样的对象创建需要传入一个Object.prototype  
一个博客之间的参数传递: 以前:http://localhost:8080/blog/?id=1006&userid=1919&page=5; 现在:http://localhost:8080/blog/?id=1006; 这样写的原因就是要要把大量参数对外显示.这样也对参数的管理不方便;相互传值也很容易乱;这样会带来依赖性;   hibernate的操作: this.getHibernateTemplate().executeFind();返回的是List new HibernateCallback( {     public Object d ...
闭包是将变量隐藏起来,通过入口调用其变量方法一: function a() {      var i = 1;      function b(){return i = i + 1;}      return b();} a(); 方法二: function a() {     function c(i) {       return i*i; }     function b(i) {         return c(i)+c(i);   }   return b;   } var ac = new a(); ac(3);//18     ...
<!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 ...
// JavaScript Documentvar tagObj = { aa:"sdf"};/*(function( window, undefined ) {  //var _Jask = window.Jask;  //document.removeEventListener( "DOMContentLoaded", function(){alert("准备完毕");}, false ) var readyList; var DOMContentLoaded = function() {  if ( document.addEve ...
(http://pic[0-9](.)[a-z]{1,}[.](com/)[a-z]{1,}(/)[0-9]{1,}(/))+   (http://[a-z]{1,}(.)[a-z]{1,}[.](com/)([a-z0-9/-]){1,}(.html))+
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=scale,src=绝对路径);_background: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 ...
<!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 ...
写js时会用到,如果发现自己想要的效果没有实现,而程序没问题的话,就参照下此表对应看下标签是否正确。 盒子标签和属性对照 css语法 (不区分大小写) JavaScript语法 (区分大小写) border border border-bottom borderBottom border-bottom-color borderBottomColor border-bottom-style borderBottomStyle border-bottom-width borderBottomWidth border-color borderColor border-left borderLeft ...
脚本化文档DOM 1.选取文档元素 1:document.getElementById();通过ID选取文档元素 2:document.getElementsByName();通过名字选取文档元素 3:document.getElementsByTagName();通过标签选取元素 2.文档结构和遍历
<!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 ...
<!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 ...
//类和原型的关系:类的所有实例对象都从同一个原型对象上继承属性 //创建一个新对象 function inherit(o) { if( o == null) return null; var t = typeof o; if(t !== "object" && t !== "function") return ; function f(){} f.prototype = o; return new f(); } //这是一个工厂方法,返回一个新对象 function ra ...
UL标签定义一个列表 UL包括内标签:dt 和dd这二个标签 dt是定义列表中的项目; dd是描述列表中的项目;   下面是一个案例: 1.先看效果:   2.代码实现: <!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"&g ...
Global site tag (gtag.js) - Google Analytics