Use the selected attribute to specify that the option should be pre-selected when the HTML page loads. You can try running the following code to implement the selected attribute −
<!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>
The above is the detailed content of How to specify in HTML that an option should be pre-selected when the page loads?. For more information, please follow other related articles on the PHP Chinese website!