美文网首页
js-拼接大量字符串

js-拼接大量字符串

作者: AssertDo | 来源:发表于2019-08-12 16:51 被阅读0次
    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title></title>
        </head>
        <body>
            <input type="button" value="拼接字符串" id="btn" /><br/>
            <input type="text"  /><br/>
            <input type="text"  /><br/>
            <input type="text"  /><br/>
            <input type="text"  /><br/>
            <input type="text"  /><br/>
            <input type="text"  /><br/>     
                    
            <script>
                document.getElementById("btn").onclick = function () {
                    var inputs = document.getElementsByTagName("input");
                    var str = [];
                    for (var i = 0; i < inputs.length; i++) {
                        if(inputs[i].type != "button"){
                            str.push(inputs[i].value);
                        }
                    }
                    console.log(str.join("|"));
                };
            </script>
            
        </body>
    </html>
    
    

    相关文章

      网友评论

          本文标题:js-拼接大量字符串

          本文链接:https://www.haomeiwen.com/subject/mknujctx.html