1949啦网--小小 痛苦,是因为能力和欲望不匹配造成的

JS点击按钮显示出点击数写法

实现步骤:

1、写一个p标签,指定一个id选择器,输入数字!

2、写一个input标签,指定type属性的属性值为button,创建一个按钮,加入onclick事件!

3、为p标签和input标签指定相关的CSS样式(可以省略)

4、用js创建一个自加的函数,在函数中用document对象的getElementById()方法,选中p标签。

5、通过innerHTML获取p标签的内容,实现自加!!

实现代码如下:

<!DOCTYPE html>  <html>  <head>      <meta charset="UTF-8">      <title>自加</title>      <style>              body {                  text-align: center;              }              p,#ipt,#btn {                  font-size: 50px;              }              #ipt {                  width: 100px;                  margin-bottom: 10px;              }              #ipt,#btn {                  height: 100px;                  padding: 0px 20px;              }          </style>          <script>             function numPlus() {                  var p = document.getElementById('num');                  p.innerHTML++;             }          </script>  </head>  <body>          <p id="num">1</p>          <input type="button" id="btn" value="点击 +1" onclick="numPlus()" />  </body>  </html>

代码的效果点击上面的运行代码来看

原文链接:https://www.qiquanji.com/post/7593.html

本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。

微信扫码关注

更新实时通知

作者:xialibing 分类:网页教程 浏览: