札记丶20171011

2017-10-17  本文已影响0人  Fantasychong

七个多月了,成长了多少?

JavaScript是一种易学习,流传广泛,常用于网页编程的语言。开撸吧!

1.写出HTML输出

实现效果:

图1.1

实现步骤:

<html>

<body>

<p>JavaScript能够直接写入HTML输出流中</p>

<script>

document.write("<h1>This is a heading</h1>");

document.write(“<p>This is a paragraph</p>”);

</script>

<p>

您只能在HTML输出流中使用document.write,要是在文档之外使用,会覆盖整个文档

</p>

</body>

</html>

那我们试一下在输出流外使用该方法

。。。

。。

好吧,尝试失败

</html>

2.对事件作出反应

实现效果:

图2.1

实现步骤:

<html>

<body>

<button type="button" onclick="alert('欢迎来到Fantasychong的数码小店')">双击溜溜溜</button>

</body>

</html>

3.改变HTML内容

实现效果:

图3.1 图3.2

实现步骤:

<p id=“demo”>听说JavaScript可以改变文字了耶</p>

<script>

function myFunction()

{

x= document.getElementById("demo");//找到元素

x.innerHTML=“真的耶,我已经改变成功啦”;//改变内容

}

</script>

<button type="button" onclick="myFunction()">

4.

上一篇下一篇

猜你喜欢

热点阅读