Trong HTML, chúng tôi sử dụng phần tử
Thuộc tính list tham chiếu đến phần tử
Ví dụ
Bạn có thể thử chạy đoạn mã sau để tìm hiểu cách sử dụng thuộc tính list trong HTML.
<!DOCTYPE html> <html> <head> <title>HTML list attribute</title> </head> <body> <p>Type the tool name:</p> <input list = "tools" name = ”tool” /> <datalist id = "tools"> <option value = "Image Editor"> <option value = "Whiteboard"> <option value = "Image Optimizer"> <option value = "Document Viewer"> </datalist> </body> </html>