欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js 覆盖和重载 函数

程序员文章站 2022-05-20 12:57:16
...
//测试同名方法 
    function testFun() { 
        showResult('this is a function named \'testFun\' with no arguments.'); 
    }; 
    function testFun(arg) { 
        showResult('this is a function named \'testFun\' with one argument,the argument is '+arg); 
    }; 

testFun();
testFun("jQuery");

 

结论:方法重名,JS会以最后定义的函数作为函数体。当然这不包括JS中的继承中的覆盖。