WEB开发 之 VBScript Where To ...
在何处放置 VBScript
当页面载入浏览器时,页面中的脚本会立即被执行。我们并不希望这种情况发生。有时我们希望当页面载入时执行脚本,而有时我们则希望当用户触发某个事件时执行这些脚本。
在 head 部分的脚本:当脚本被调用时,它们会被执行,或者某个事件被触发时,脚本也有可能会执行。当我们把脚本放置于 head 部分时,就可以确保在用户使用之前它们已经被载入了:
<html>
<head>
<script type="text/vbscript">
some statements
</script>
</head>
在 body 部分的脚本:当页面的 body 部分被载入时,脚本就会被执行。当我们把脚本放置于 body 部分,它会生成页面的内容:
<html>
<head>
</head>
<body>
<script type="text/vbscript">
some statements
</script>
</body>
位于 body 和 head 部分的脚本:您可以在文档中放置如何数量的脚本,因此您可以同时在 body 和 head 部分放置脚本:
<html>
<head>
<script type="text/vbscript">
some statements
</script>
</head>
<body>
<script type="text/vbscript">
some statements
</script>
</body>
|