码迷,mamicode.com
首页 > 其他好文 > 详细

前端小demo——用特殊符号拼接字符串

时间:2018-06-04 16:31:07      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:字符   har   nbsp   输入   pre   ima   分享图片   input   函数   

技术分享图片

这里我用的是心形拼接输入的字符串

<!DOCTYPE html>
<html>

<head lang="en">
  <meta charset="UTF-8">
  <title></title>
  <style>
    input {
      width: 150px;
      height: 30px;
      background-color: #ccc;
    }

    #btn {
      background-color: red;
    }
  </style>
</head>

<body>
  <input type="button" value="拼接字符串" id="btn" />
  <input type="text" />
  <input type="text" />
  <input type="text" />
  <input type="text" />
  <input type="text" />
  <input type="text" />
  <!-- <script src="common.js"></script> -->
  <script>
    function zy$(id) {
      return document.getElementById(id)
    };

    //注册点击事件,添加事件处理函数
    zy$("btn").onclick = function () {
      var inputs = document.getElementsByTagName("input");
      var str = [];
      for (var i = 0; i < inputs.length; i++) {
        if (inputs[i].type == "text") {
          str.push(inputs[i].value);
        }
      }
      document.write("<h2>" + str.join("?") + "</h2>")
    };
  </script>
</body>

</html>

 

前端小demo——用特殊符号拼接字符串

标签:字符   har   nbsp   输入   pre   ima   分享图片   input   函数   

原文地址:https://www.cnblogs.com/yuebanzhou/p/9133245.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!