1:javascript類型:
6種:undefined null number string boolean function
第7種 object
2:typeof運算符
alert(typeof a ) // undefined
if(typeof a =="undefined"){} //true
typeof返回的是字符串不是類型 ,一定要記住,所以上面的if語句中的引號是不能不寫的的。
3:命名法: 應該使用 匈牙利命名法命名變量 駝峰命名法命名函數
4:javascript this指針prototype使用
$(function(){
alert("aaaaaaaaaaa");
function sayHi(){
alert("hello");
return this;
}
function sayHi2(){
alert("hello2");
return this;
}
function Person(){
}
Person.prototype.sayHello=sayHi;
Person.prototype.sayHello2=sayHi2;
var marry=new Person();
marry.sayHello().sayHello2();
});