Đang chuẩn bị liên kết để tải về tài liệu:
Học JavaScript qua ví dụ part 40
Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Hình thức trình Fillout Đệ Nếu không có một mẫu HTML JavaScript. Khi người dùng nhấn một nút gửi, hình thức thường được gửi đến máy chủ để xử lý bằng một ứng dụng khác như là một kịch bản PHP, ASP.NET, hoặc CGI. Trước khi máy chủ được các hình thức, nội dung của nó được thu thập bởi trình duyệt, URL được mã hóa, và sau đó được gửi đến địa chỉ cung cấp trong các thuộc tính hành động của biểu mẫu. | 356 Chapter 11 Working with Forms and Input Devices Figure 11.15 What went wrong Watch your spelling We tried to reference a form by the wrong name 11.4.4 Submitting Fillout Forms Submitting an HTML Form Without JavaScript. When the user clicks a submit button the form is normally sent to the server for further processing by another application such as a PHP ASP.NET or CGI script. Before the server gets the form its content is gathered by the browser URL encoded and then sent to the address supplied in the action attribute of the form. In the previous examples the action attribute was not used because there was no reason to process the user input in the sample forms. The application on the server side decodes and processes the form information. From there an acknowledgment can be sent back to the user an e-mail delivered the processed information sent to a database or whatever else we define. Now let s look at an example of an HTML form and how it is submitted to a server application. After the user fills out the form he or she will click the Submit button. The form data will be collected by the browser as name value pairs and sent to the server. The method attribute determines how the data is sent as a query string or message body and the action attribute determines where it will be sent the URL of a server . EXAMPLE 11.8 html head title An HTML Form title head body big strong 1 form action cgi-bin bookstuff form1.cgi method post p fieldset legend All About You legend P Type your name here 2 input type text name namestring size 50 p b Choose a work place b br 3 input type checkbox name place value LA Los Angeles br input type checkbox name place value SJ San Jose br input type checkbox name place value SF checked San Francisco br From the Library of WoweBook.Com 11.4 JavaScript and the form Object 357 EXAMPLE 11.8 continued br input type radio name status value senior id senior label for senior senior label br input type radio name status value adult id adult .