javescript入门
javescript是脚本语言
javescript是轻量级的编程语言
javescript是可插入HTML页面的编程代码可由所有的现代浏览器执行
javescript:写入HTML输出
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph</p>");
HTML中的代码
<!DOCTYPE html>
<html>
<body>
<p>
javescript 能够直接写入HTML输出流中;
</p>
<script>
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>