Computer >> Máy Tính >  >> Lập trình >> HTML

Làm cách nào để đặt hướng văn bản sẽ được gửi trong HTML?


Sử dụng dirname thuộc tính cho phép bạn gửi hướng văn bản. Giá trị sẽ là tên của đầu vào theo sau là “.dir”.

Ví dụ

<!DOCTYPE html>
<html>
   <body>
      <h2>Student Contact Form</h2>
      <form action = "mailto:emailid@example.com" 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>