欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html script标签怎么用

程序员文章站 2022-03-15 11:05:05
...
html script标签用于定义客户端脚本,比如JavaScript,script元素既可以包含脚本语句,也可以通过src属性指向外部脚本文件。

html script标签怎么用

html script标签怎么用?

作用:用于定义客户端脚本,比如 JavaScript。

说明:script 元素既可以包含脚本语句,也可以通过 src 属性指向外部脚本文件。必需的 type 属性规定脚本的 MIME 类型。JavaScript 的常见应用时图像操作、表单验证以及动态内容更新。

注释:

假如此元素内部的代码没有位于某个函数中,那么这些代码会在页面被加载时被立即执行。<frameset> 标签之后的脚本会被忽略。

html script标签 示例1

<html>
<body>
<script type="text/javascript">
document.write("<h1>Hello World!</h1>")
</script> 
</body>
</html>

运行结果:

html script标签怎么用

html script标签 示例2

<html>
<body>
<script type="text/javascript">
alert('hello php.cn');
</script> 
</body>
</html>

运行结果:

html script标签怎么用

以上就是html script标签怎么用的详细内容,更多请关注其它相关文章!

相关标签: html script