标签:
<!DOCTYPE html> <html> <head> <script type="text/javascript"> function showLog(message){ console.log(message); } function test(name){ showLog(name); } test("hello"); </script> </head> <body> </body> </html>
标签:
原文地址:http://www.cnblogs.com/qq-757617012/p/4196726.html