디렉토리 이름 사용 속성을 사용하면 텍스트 방향을 제출할 수 있습니다. 값은 입력 이름 뒤에 ".dir"이 옵니다.
예시
<!DOCTYPE html> <html> <body> <h2>Student Contact Form</h2> <form action = "mailto:[email protected]" method = "post" enctype = "text/plain"> Student Name:<br><input type = "text" name = "sname" dirname = "sname.dir"> <br> Student Subject:<br><input type = "text" name = "ssubject"><br> <input type = "submit" value = "Send"> </form> </body> </html>