编辑下面的代码:【加编码】
<html> <body> <form action="form_action.asp"> 姓名: <input type="text" id="myText" name="fname" required> <input type="submit"> </form> <p>点击 "点我" 按钮查看文本域是否是表单提交的必填部分。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myText").required; document.getElementById("demo").innerHTML = x; } </script> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂