執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <form id="myForm" action="/action_page.php"> <input type="radio" name="sex" id="male" value="male"> </form> <p>Click the button to create a LABEL element.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var x = document.createElement("LABEL"); var t = document.createTextNode("Male"); x.setAttribute("for", "male"); x.appendChild(t); document.getElementById("myForm").insertBefore(x,document.getElementById("male")); } </script> </body> </html>