简单教程
提交运行
代码编辑器:
<script> function displayResult(){ var x=document.getElementById("submit1").name; alert(x); } </script> <form> Email: <input type="text" id="email"> <input type="submit" name="submit1" id="submit1"> </form> <button type="button" onclick="displayResult()">显示提交按钮的名称</button>
运行结果: