Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Hình thức xác thực Các hành động Mẫu Xác nhận kiểm tra các nội dung của các trường văn bản quy định để đảm bảo rằng người dùng đã nhập đúng loại dữ liệu. Bạn có thể đính kèm hành động này để các trường văn bản cá nhân bằng cách sử dụng một sự kiện onBlur để xác nhận các lĩnh vực như người dùng sẽ được điền vào biểu mẫu, hoặc đính kèm nó vào các hình thức với sự kiện onClick để đánh giá các trường văn bản cùng một lúc khi người dùng nhấp nút Submit . | Validating Forms The Validate Form action checks the contents of specified text fields to ensure that the user has entered the correct type of data. You can attach this action to individual text fields using an onBlur event to validate the fields as the user is filling out the form or attach it to the form with the onClick event to evaluate several text fields at once when the user clicks the Submit button. Attaching this action to a form prevents the form from being submitted to the server if any of the specified text fields contains invalid data. In addition Dreamweaver can add JavaScript code that checks the contents of specified text fields to ensure that the user has entered the correct type of data. Validate HTML Form Data Open a form document or create a new form document. IMPORTANT The form document must contain at least one text field and a Submit button. In addition all text fields must have unique names. Select the Submit button inside the form that you want to validate. Click the Window menu and then click Behaviors to display the Behaviors panel. Click the Add Behavior button the Plus sign and then click Validate Form. Select the form input fields one at a time and then validate the form using the following options Required. Select to make the form object required. Anything. Accepts any input entered by the user. Number. Restricts input to numeric. Email address. Looks for an e-mail address with the @ sign. Number from. Enables you to enter a minimum and maximum range for numeric values. 314 Chapter 13 Click OK to add the validation information in script to the HTML form document. Click the Action button in the Behaviors panel and then select one of the following options OnClick. Select if you are validating multiple fields when the user submits the form. OnBlur. Select if you are validating individual fields. Click the File menu point to Preview In Browser and then check the current validation actions. Chapter 13 Creating Forms 315 Creating and .