function test() 

alert("执行下面一个函数"); 
test1(); 
} test1() 

  alert("hellow,我是否被调用啦?"); 
}
test();

解决方案 »

  1.   

    function test() 

    alert("执行下面一个函数"); 
    test1(); 

    我的意思是这个test1()不能执行啊。也不能使用call test1()地方法
      

  2.   

    function test() 

    alert("执行下面一个函数"); 
    test1(); 
    function test1() 

      alert("hellow,我是否被调用啦?"); 
    }test1()前面漏了function
      

  3.   

    其实已经调用了,你是不是不会执行啊,下面简单的写了一下html文件,你看是不是这个意思。<html>
    <body onload="test()"><script>
    function test() 

    alert("执行下面一个函数"); 
    test1(); 
    } function  test1() 

      alert("hellow,我是否被调用啦?"); 

    </script></body>
    </html>
      

  4.   

    就是test1前面少了function,所以才执行不起来,呵呵。怎么调用,lz肯定会~~~