Take your webpages to the next level by harnessing JavaScript. Learn in this article how to trigger JavaScript right from your HTML documents.
| Prerequisites: | You need to be familiar with how to create a basic HTML document . |
|---|---|
| Objective: | Learn how to trigger JavaScript in your HTML file, and learn the most important best practices for keeping JavaScript accessible. |
JavaScript is a programming language mostly used client-side to make webpages interactive. You can create amazing webpages without JavaScript, but JavaScript opens up a whole new level of possibilities.
注意: In this article we're going over the HTML code you need to make JavaScript take effect. If you want to learn JavaScript itself, you can start with our JavaScript 基础 article. If you already know something about JavaScript or if you have a background with other programming languages, we suggest you jump directly into our JavaScript 指南 .
Within a browser, JavaScript doesn't do anything by itself. You run JavaScript from inside your HTML webpages. To call JavaScript code from within HTML, you need the
<script>
element. There are two ways to use
script
, depending on whether you're linking to an external script or embedding a script right in your webpage.
Usually, you'll be writing scripts in their own .js files. If you want to execute a .js script from your webpage, just use
<script>
采用
src
attribute pointing to the script file, using its
URL
:
<script src="path/to/my/script.js"></script>
You may also add JavaScript code between
<script>
tags rather than providing an
src
属性。
<script>
window.addEventListener('load', function () {
console.log('This function is executed once the page is fully loaded');
});
</script>
That's convenient when you just need a small bit of JavaScript, but if you keep JavaScript in separate files you'll find it easier to
Accessibility is a major issue in any software development. JavaScript can make your website more accessible if you use it wisely, or it can become a disaster if you use scripting without care. To make JavaScript work in your favor, it's worth knowing about certain best practices for adding JavaScript:
<noscript>
像这样:
<noscript>To use this site, please enable JavaScript.</noscript>
<noscript>
is no excuse for writing inaccessible scripts.
<script>
<noscript>
最后修改: , 由 MDN 贡献者