본문 바로가기
컴퓨터/javascript

공백 제거, 대문자로 변경

by 싱판다 2018. 2. 9.

<input type="text" id="changeUpper" />

<input type="button" value="check" id="changebtn" />


    <script>

        var Btn = document.querySelector("#changebtn");

        Btn.onclick = function () {

            var text = document.querySelector("#changeUpper").value;


            text = text.replace(/(\s*)/g, "");

            text = text.toUpperCase();

            

            document.querySelector("#changeUpper").value = text;

        };

        

        

    </script>


댓글