javascript筆記整理(対象の継承順、分類)
2504 ワード
Object.prototype.say=function(){
alert(" ");
}
children.prototype=new parent();
parent.prototype.say=function(){
alert(' ');
}
function parent(){
this.say=function(){
alert(' ');
}
}
children.prototype.say=function(){
alert(' ')
}
function children(){
//****
this.say=function(){
alert(' ');
}
}
var one=new children();
alert(one.say); // : *
継承順は下から上になりますので、原型の位置などに注意してください.オブジェクトの分類
1.内蔵オブジェクト
1.1、Global
実際には存在しません.JavaScriptのすべての関数はあるオブジェクトの方法でなければなりません.例えば isNaN()、パースイント() などの方法は全部Globalオブジェクトの方法です.
1.2、Math(フォーマット:Math.メソッド(パラメータ))
// :Math.abs()
var a=-23;
alert(Math.abs(a)); :23
// ( ):Math.round()
var a=-2.4;
alert(Math.round()); :2
// ( ):Math.floor()
var a=2.9;
alert(Math.floor()); :2
// ( ):Math.ceil()
var a=2.1;
alert(Math.ceil()); :3
// :Math.max()
var a=2.1;var b=3.3
alert(Math.max(a,b)); :3.3
// :Math.min()
var a=2.1;var b=3.3
alert(Math.min(a,b)); :2.1
// (0~1 ):Math.random()
// 0-10
alert(Math.round(Math.random()*10));
2.ローカルオブジェクト(詳細はW 3 Cで紹介されていますが、ここでは説明しません.)2.1.アラy
2.2 Number
2.3.String
2.4.ボロア
2.5.Function
2.6.RegExp
…
3.宿主の対象(後は専門的な文章でこの二つの相手を紹介します)
DOM――DOMを通じて、すべてのHTML要素にアクセスできます.それらが含むテキストと属性と一緒に.
BOM——ブラウザオブジェクトモデル