javescript学习

javescript入门

javescript是脚本语言
javescript是轻量级的编程语言
javescript是可插入HTML页面的编程代码可由所有的现代浏览器执行


javescript:写入HTML输出

document.write("

This is a heading

"); document.write("

This is a paragraph

");

HTML中的代码


<html>
<body>

<p>
javescript 能够直接写入HTML输出流中;
p>

<script>
document.write("

This is a heading

"
); document.write("

This is a paragraph

"
);
script> <p> 你只能在HTML输出流中使用 <strong>document.writestrong>.如果你在文档一加载后使用它(比如函数中),会覆盖整个文档。 p> body> html>

你可能感兴趣的:(javescript)