用于获取某个标签的私有属性(非rfc标准的),
这个属性, IE会自动给解析出来, 例如dom.customize_field_name, 就直接可以访问,
Firefox却不会自动给解析,
只能用dom.attributes.getNamedItem('customize_field_name').value访问,
最后通用一点就是都用dom.attributes.getNamedItem('customize_field_name').value, IE下也是支持的
Java, Python, IR, KM, NLP, JS, Web2.0
最后通用一点就是都用dom.attributes.getNamedItem('customize_field_name').value, IE下也是支持的
function User(name, age){
//if ( !(this instanceof User) )这个也是可以工作的, 但是arguments.callee更通用
if ( !(this instanceof arguments.callee) )
return new User(name, age);
this.name = name + " - " + age;
}
var user = User("xlty", 27); <==> var user = new User("xlty", 27);
Math.min accept a list of number:
> Math.min(1,43);
We want to pass an array to Math.min
> Math.min.apply( Math, array );