不用alert,用console.log() 复制代码 代码如下: <br /> function showLog(message){ <br /> console.log(message); <br /> } <br /> function test(name){ <br /> showLog(name); <br /> } <br /> test("hello"); <br /> 以上算是一个个人心得,这里分享给大家,小伙伴们试试看。