- 2
- 0
- 约小于1千字
- 约 3页
- 2018-06-27 发布于河南
- 举报
JAVAscript学习代码
生成文本:
html
body
script type=text/javascript
document.write(Hello World!)
/script
/body
/html
生成普通文本和标签
html
body
script type=text/javascript
document.write(h1Hello World!/h1)
/script
/body
/html
Head部分
html
head
script type=text/javascript
function message()
{
alert(该提示框是通过 onload 事件调用的。)
}
/script
/head
body onload=message()
/body
/html
Body部分
html
head
/head
body
script type=text/javascript
document.write(该消息在页面加载时输出。)
/script
/body
/html
外部javascript
html
head
/head
body
script src=/js/example_externaljs.js
/script
p
实际的脚本位于名为 xxx.js 的外部脚本中。
/p
/body
/html
Javascript语句
html
body
script type
原创力文档

文档评论(0)