How to debug a page on iPad? When using iOS 5, you can open the console in the developer tools in Safari on the iPad and view the log print information of console.log for debugging. However, this item cannot be found after upgrading to iOS 6. Here you can use the firebug tool to debug the page. Add in head: <script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script> Then add debug=true to the html, and the firebug debugging tool console will appear when you open the page. This can be used not only for iPad but also for debugging tools on PC. However, general browsers have their own console debugging information, so Firebug is not needed. as follows: Copy code The code is as follows:<html debug=true> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>title</title> <script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script> </head> <body> Page content </body> </html><span style="white-space: pre;"> </span> |
<<: Common shell script commands and related knowledge under Linux
>>: MySQL partitions existing tables in the data table
What should I do if Linux does not support all co...
Recently, when I was drawing an interface, I enco...
The MySQL built-in date function TIMESTAMPDIFF ca...
The crontab command is used by Unix and Linux to ...
Google's goal with Flutter has always been to...
Preface This is an investigation caused by the ex...
What is em? em refers to the font height, and the ...
Several concepts Line box: A box that wraps an in...
The establishment of MySQL index is very importan...
Recently, when I turned on my computer, I saw tha...
Connections can be used to query, update, and est...
Declaring variables Setting Global Variables set ...
Environmental Statement Host OS: Cetnos7.9 Minimu...
Here are some tips from training institutions and...
The error "mysql is not an internal command&...