手机上没有console.log 方法,做了个console.log 方法
1 | <style> |
2 | #console{ |
3 | background:#ccc; |
4 | position:absolute; |
5 | bottom:0; |
6 | left:0; |
7 | height:100px; |
8 | width:100%; |
9 | } |
10 | </style> |
11 | <script> |
12 | var div = document.createElement('div'); |
13 | div.id = 'console'; |
14 | document.body.appendChild(div); |
15 | console.log = function(thing){ |
16 | div.innerText = JSON.stringify(thing); |
17 | } |
18 | </script> |
手机上就可以使用console.log方法了。