ใช้ ที่เลือก แอตทริบิวต์เพื่อระบุว่าควรเลือกตัวเลือกนี้ล่วงหน้าเมื่อโหลดหน้าเว็บใน HTML คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน selected แอตทริบิวต์ −
ตัวอย่าง
<!DOCTYPE html> <html> <head> <title>HTML selected attribute</title> </head> <body> <p>Here's the list of subjects. Select any one:</p> <form> <select name = "dropdown"> <option value = "Computer Architecture" selected>Computer Architecture</option> <option value = "Java">Java</option> <option value = "Discrete Mathematics">Discrete Mathematics</option> </select> </form> </body> </html>