运行 ❯
获取您
自身
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The lastChild Property</h2> <p>Click the button to get the text of the last child node of the select element.</p> <select id="mySelect" size="5"><option>Audi</option><option>BMW</option><option>Saab</option><option>Volvo</option></select><br><br> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { let text = document.getElementById("mySelect").lastChild.text; document.getElementById("demo").innerHTML = text; } </script> </body> </html>