首页javascriptformJavascript Form - 如何获取表单名称值

Javascript Form - 如何获取表单名称值

我们想知道如何获取表单名称值。


<html>
    <body>
    <script language="JavaScript">
    function showName(){
        console.log("Form Name is: " + document.form1.name);
    }
    </script>
    <form name ="form1" >
        Dummy input text box.
        <input type= "text" size="15">
        <br><br>
        Click on the button to get the name of the form
        <input type="button" value="click me" onclick='showName()'>
    </form>
    </body>
</html>