这篇文章主要介绍了JavaScript与HTML的结合方法,利用实例向大家介绍JavaScript与HTML是如何结合的,内容很详细,感兴趣的小伙伴们可以参考一下

HTML中的JavaScript脚本必须位于<script>与</script>标签之间,JavaScript脚本可被放置在HTML页面的<body>标签和<head>标签中,这种视情况而定,一般放在<head>标签内。
一、<script> 标签
      如需在HTML页面中插入JavaScript脚本,请使用<script>标签。<script>和</script>会告诉JavaScript在何处开始
和结束。<script>和</script>之间的代码行包含了JavaScript:

?
1 2 3 <span style= "font-size:18px;" ><script type= "text/javascript" > alert( "欢迎来到JavaScript世界!!!" ); </script></span>

       您无需理解上面的代码。只需明白,浏览器会解释并执行位于 <script> 和 </script> 之间的 JavaScript。那些老
旧的实例可能会在<script>标签中使用type="text/javascript"。现在已经不必这样做了。JavaScript是所有现代浏览器
以及HTML5中的默认脚本语言。鉴于刚刚学习JavaScript语言的可以使用!
二、<body>中的JavaScript
在本例中,JavaScript会在页面加载时向HTML的<body>写文本:
实例代码:

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=gb2312" /> < title >JavaScript脚本语言</ title > > </ head >    < body > < p > JavaScript 能够直接写入 HTML 输出流中: </ p >     < script type = "text/javascript" > document.write("< h1 >This is a heading</ h1 >"); document.write("< p >This is a paragraph.</ p >"); </ script >     < p > 您只能在 HTML 输出流中使用 < strong >document.write</ strong >。 如果您在文档已加载后使用它(比如在函数中),会覆盖整个文档。 </ p > </ body > </ html >

       我们先不管JavaScript代码怎么写和怎么运行,先来看运行结果:

三、JavaScript 函数和事件
       上面例子中的 JavaScript 语句,会在页面加载时执行。通常,我们需要在某个事件发生时执行代码,比如当用户
点击按钮时。如果我们把 JavaScript 代码放入函数中,就可以在事件发生时调用该函数。

四、<head>或<body>中的JavaScript
    您可以在 HTML 文档中放入不限数量的脚本。脚本可位于 HTML 的 <body> 或 <head> 部分中,或者同时存在于
两个部分中。通常的做法是把函数放入 <head> 部分中,或者放在页面底部。这样就可以把它们安置到同一处位置,
不会干扰页面的内容。

五、<head>中的JavaScript函数
在本例中,我们把一个JavaScript函数放置到HTML页面的<head>部分。该函数会在点击按钮时被调用:
实例代码:

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=gb2312" /> < title >JavaScript脚本语言</ title > < script type = "text/javascript" > function myFunction() { document.getElementById("demo").innerHTML="My First JavaScript Function"; } </ script > </ head >    < body > < h1 >My Web Page</ h1    < p id = "demo" >A Paragraph.</ p    < button type = "button" onclick = "myFunction()" >点击这里</ button </ body > </ html >

运行的结果为:

点击按钮后的效果为:

六、<body>中的JavaScrip 函数
       在本例中,我们把一个JavaScript函数放置到HTML页面的<body>部分。该函数会在点击按钮时被调用:
实例代码:

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=gb2312" /> < title >JavaScript脚本语言</ title </ head >    < body > < h1 >My First Web Page</ h1 >     < p id = "demo" >A Paragraph.</ p >     < button type = "button" onclick = "myFunction()" >点击这里</ button >       < script type = "text/javascript" > function myFunction() { document.getElementById("demo").innerHTML="My First JavaScript Function"; } </ script > </ body > </ html >

       运行的结果与上述五的结果一样!
       提示:我们把 JavaScript 放到了页面代码的底部,这样就可以确保在 <p> 元素创建之后再执行脚本。
七、外部的JavaScript
       我们也可以把脚本保存到外部文件中。外部文件通常包含被多个网页使用的代码。外部 JavaScript 文件的文件扩
展名是 .js。如需使用外部文件,请在 <script> 标签的 "src" 属性中设置该 .js 文件,如果有大量的JavaScript代码,我
们提倡使用外部的JavaScript方式,一般我们也采用分离的方式连接到HTML文档中。
实例
HTML代码:

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3/TR/xhtml1/DTD/xhtml1-transitional.dtd"> < html xmlns = "http://www.w3/1999/xhtml" > < head > < meta http-equiv = "Content-Type" content = "text/html; charset=gb2312" /> < title >JavaScript脚本语言</ title > < script type = "text/javascript" src = "/js/myScript.js" ></ script > </ head >    < body > < h1 >My Web Page</ h1    < p id = "demo" >A Paragraph.</ p    < button type = "button" onclick = "myFunction()" >点击这里</ button    < p >< b >注释:</ b >myFunction 保存在名为 "myScript.js" 的外部文件中。</ p > </ body > </ html >

myScript.js代码:

?
1 2 3 4 function myFunction() { document.getElementById( "demo" ).innerHTML= "My First JavaScript Function" ; }

       运行的结果和上述一致!
       提示:在<head 或<body>中引用脚本文件都是可以的。实际运行效果与您在<script>标签中编写脚本完全一致。
外部脚本不能包含 <script> 标签。

以上就是JavaScript与HTML的结合方法,希望对大家的学习有所帮助。

更多推荐

JavaScript与HTML的结合方法详解