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
Adding the attribute selected = "selected&quo...
I don't know if you have ever encountered suc...
Automatic web page refresh: Add the following code...
background: 1. There is a notification table in t...
This may be an issue that is easily overlooked. F...
How to display text overflow? What are your needs...
There are many ways to write and validate form fi...
1: Understand the meaning of address rewriting an...
Background - Online Alert An online server issued...
Detailed explanation and examples of database acc...
1. Download, install and activate CLion Just foll...
Preface JSON is a lightweight data exchange forma...
Common Nginx configuration allows cross-domain se...
Table of contents 1. Use the "rpm -ivh insta...
After configuring the tabBar in the WeChat applet...