이 기사의 예에서는 JavaScript가 웹 페이지에서 지원하는 양식 문자 집합을 얻는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
JavaScript는 웹페이지에서 지원하는 폼의 문자 집합을 얻습니다. 이는 폼의 acceptCharset 메서드를 통해 얻을 수 있습니다.
<!DOCTYPE html> <html> <body> <form id="frm1" accept-charset="ISO-8859-1"> First name: <input type="text" name="fname" value="Donald"><br> Last name: <input type="text" name="lname" value="Duck"><br> </form> <p>The value of the accept-charset attribute is: <script> document.write(document.getElementById("frm1").acceptCharset) </script> </p> </body> </html>
위 코드 출력:
The value of the accept-charset attribute is:ISO-8859-1
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.