디렉토리 이름 사용 속성을 사용하면 텍스트 방향을 제출할 수 있습니다. 값은 ".dir 뒤에 오는 입력 이름입니다. ".
예시
다음 코드를 실행하여 dirname 작업을 시도할 수 있습니다. 속성 -
<!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>