当前位置:编程学习 > JAVA >>

javascript知识扩展

 

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(); 

});

补充:web前端 , JavaScript ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,