<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>填充 Select 选项</title> </head> <body> <select id="mySelect"></select> <script> const selectElement = document.getElementById('mySelect'); // 创建一个新的 option 元素 const option1 = document.createElement(...