Several ways to submit HTML forms_PowerNode Java Academy

Several ways to submit HTML forms_PowerNode Java Academy

Method 1: Submit via the submit button

<!DOCTYPE html>
<html>
<head>
    <title>Submit via the submit button</title>
    <meta charset="UTF-8"/>
</head>
<body>
    <form action="" method="get" id="form1">
        <input type="text" name="username"></input>
        <input type="submit" value="Submit" />
    </form>
</body>
</html>

Method 2: Submit via a normal button

<!DOCTYPE html>
<html>
<head>
    <title>Submit via a regular button</title>
    <meta charset="UTF-8"/>
</head>
<body>
    <form action="" method="get" id="form1">
        <input type="text" name="username"></input>
        <input type="button" value="ok" name="sb" onclick="submit1();">
    </form>
    <script type="text/javascript">
        function submit1()
        {
            var form1 = document.getElementById("form1");
            form1.action = " bjpowernode.html";
            form1.submit();
        }
    </script>
</body>
</html>

Method 3: Submit via hyperlink

<!DOCTYPE html>
<html>
<head>
    <title>Submit via hyperlink</title>
    <meta charset="UTF-8"/>
</head>
<body>
    <a href="bjpowernode.html?username=张三">Submit via hyperlink</a> 
</body>
</html>

<<:  How to retrieve password for mysql 8.0.22 on Mac

>>:  Vue implements websocket customer service chat function

Recommend

Html Select uses the selected attribute to set the default selection

Adding the attribute selected = "selected&quo...

Sample code for automatic web page refresh and automatic jump

Automatic web page refresh: Add the following code...

Priority analysis of and or queries in MySQL

This may be an issue that is easily overlooked. F...

Pure CSS custom multi-line ellipsis problem (from principle to implementation)

How to display text overflow? What are your needs...

Vue uses rules to implement form field validation

There are many ways to write and validate form fi...

Detailed explanation and examples of database account password encryption

Detailed explanation and examples of database acc...

Instructions for using JSON operation functions in Mysql5.7

Preface JSON is a lightweight data exchange forma...

How to use map to allow multiple domain names to cross domains in Nginx

Common Nginx configuration allows cross-domain se...

MySQL infobright installation steps

Table of contents 1. Use the "rpm -ivh insta...