📄 importjs1_column1.html
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Introduction to Ajax Tutorial</title>
</head>
<body>
<p class="main">
Your heaviest load times are going to be either the
JavaScript itself or CSS files in the head section. This is
due to the fact that when JavaScript or CSS is being parsed
by a browser it typically just uses one connection to do so
where as other elements in the body section load through
multiple connections. In short all attention is focused on
parsing the JavaScript and the other elements have to wait
until the JavaScript is parsed to render.
</p>
<p class="main">
That is why doing this sort of thing in Web pages is
notoriously poor:
</p>
<p class="code">
<script src="blah1.js"
type="text/javascript"><br />
</script><br />
<script src="blah2.js"
type="text/javascript"><br />
</script><br />
<script src="blah3.js"
type="text/javascript"><br />
</script>
</p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -