Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Lecture Web technologies and programming – Lecture 11: HTML 5 form elments
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Web technologies and programming – Lecture 11: HTML 5 form elments
Ngọc Tuấn
88
50
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Lecture Web technologies and programming – Lecture 11: HTML 5 form elments. After studying this chapter you will be able to understand: Creating forms in HTML, adding form elements, HTML5 enhancements in form, the required attribute, the placeholder attribute,. | 1 CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr. Tehseen Riaz Abbasi 1 2 3 3 grgf Creating forms in HTML Common Form Attributes When to Use GET AND POST? Form elements Textbox Password Field Hidden Field Checkbox Radio Button Text Area Select List Submit Button Reset Button Adding form elements 4 HTML5 enhancements in form XHTML 5 HTML5 enhances the forms in two ways Adding new attributes to exiting elements New elements 6 Required attribute: tells the browser to only submit the form if the field in question is filled out ensures that all necessary information is provided by the user 7 8 Input type Required attribute 9 Error message Placeholder attribute: Allows a short hint to be displayed inside the form element tell the user what data should be entered in that field 10 11 placeholder 12 Hint about data pattern attribute: enables you to provide a regular expression that the user’s input must match in order to be considered valid 13 14 Allowed characters Valid length Pattern attribute 15 Invalid input Error message Writing Regular Expression: [ ]: makes a class of characters -: means a range of characters [a-z],[0-9] [^ ]: negates the class of character [^0-9] {n}: matches a character, class or sub-pattern for n times { n, m}: matches a character, class or sub-pattern for minimum n times and maximum m times 16 Example patterns: 17 Only alphabets Allowed length Only alphabets Allowed length Space is allowed Last name Allowed length Example patterns: 18 Only digits Allowed length Only digits Allowed length - symbol - symbol . | 1 CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr. Tehseen Riaz Abbasi 1 2 3 3 grgf Creating forms in HTML Common Form Attributes When to Use GET AND POST? Form elements Textbox Password Field Hidden Field Checkbox Radio Button Text Area Select List Submit Button Reset Button Adding form elements 4 HTML5 enhancements in form XHTML 5 HTML5 enhances the forms in two ways Adding new attributes to exiting elements New elements 6 Required attribute: tells the browser to only submit the form if the field in question is filled out ensures that all necessary information is provided by the user 7 8 Input type Required attribute 9 Error message Placeholder attribute: Allows a short hint to be displayed inside the form element tell the user what data should be entered in that field 10 11 placeholder 12 Hint about data pattern attribute: enables you to provide a regular expression .
TÀI LIỆU LIÊN QUAN
Lecture Web technologies and programming – Lecture 31: Summary of Lecture 1 - 15
Lecture Web technologies and programming – Lecture 31: Summary of Lecture 1 - 15
Lecture Web technologies and programming – Lecture 2: The web application development process - Web project management
Lecture Web technologies and programming – Lecture 4: Modeling web applications and implementation and testing web application
Lecture Web technologies and programming – Lecture 29: Web services, intro to web hosting
Lecture Web technologies and programming – Lecture 4: Modeling web applications and implementation and testing web application
Lecture Web technologies and programming – Lecture 29: Web services, intro to web hosting
Lecture Web technologies and programming – Lecture 2: The web application development process - Web project management
Lecture Web technologies and programming – Lecture 32: Summary of Lecture 16-30
Lecture Web technologies and programming – Lecture 32: Summary of Lecture 16-30
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.