1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
-
- <script>
-
- function surprise(){
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- var i = 1
- while(i <= 9){
- var j = 1
- while(j <= i){
- document.write(j + "*" + i + "=" + i*j + " ")
- j++
- }
- document.write("<br>")
- i++
- }
- }
- </script>
- </head>
- <body>
-
- <button onclick="surprise()">点我点我点我</button>
-
- </body>
- </html>
|