Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript 숫자로 선행 0을 유지하는 방법은 무엇입니까?


JavaScript에서 선행 0을 보존할 방법은 없습니다. 그러나 이 id를 문자열로 간주하고 인수로 전달할 수 있습니다.

예시

다음 코드를 실행하여 선행 0을 문자열로 만들어 보존할 수 있습니다. −

<html>
   <head>
      <script>
         function sayHello(name, age, id) {
            document.write (name + " is " + age + " years old, with id = "+id);
         }
      </script>
   </head>
   <body>
      <p>Click the following button to call the function</p>
      <form>
         <input type="button" onclick="sayHello('John', 26, '0678')"
            value="Display Employee Info">
      </form>
   </body>
</html>