Solution to automatically submitting the form and jumping to other pages after pressing Enter on the web page

Solution to automatically submitting the form and jumping to other pages after pressing Enter on the web page
After pressing Enter on the webpage, the form is automatically submitted and goes to other pages

There is a query form. I originally hoped that the query would only be executed when I clicked the query button. However, when I pressed Enter during the test, it went to other pages.

Copy code
The code is as follows:

<form action="notice.php" method="get">
...
<button type='button' onclick ="search_wj()" class="btn btn-ok">Search</button>
</form>

Solution:

Add an onsubmit="search_wj();return false;" to the form

Copy code
The code is as follows:

<form action="notice.php" onsubmit="search_wj();return false;" method="get">
...
<button type='button' onclick ="search_wj()" class="btn btn-ok">Search</button>
</form>

<<:  Implementing WeChat tap animation effect based on CSS3 animation attribute

>>:  Explanation on whether to choose paging or loading in interactive design

Recommend

CentOS 7 set grub password and single user login example code

There are significant differences between centos7...

Research on the effect of page sidebar realized by JS

Table of contents Discover: Application of displa...

Vue3.0 handwriting magnifying glass effect

The effect to be achieved is: fixed zoom in twice...

How to create a responsive column chart using CSS Grid layout

I have been playing around with charts for a whil...

Analysis of problems caused by MySQL case sensitivity

MYSQL is case sensitive Seeing the words is belie...

Deleting two images with the same id in docker

When I created a Docker container today, I accide...

jQuery achieves the effect of advertisement scrolling up and down

This article shares the specific code of jQuery t...

Common front-end JavaScript method encapsulation

Table of contents 1. Enter a value and return its...

Write a formal blog using XHTML CSS

The full name of Blog should be Web log, which me...

Super detailed MySQL usage specification sharing

Recently, there have been many database-related o...

How to install mysql5.7 in windows

First download the compressed version of mysql, t...

CSS scroll bar style modification code

CSS scroll bar style modification code .scroll::-...

Put frameset in body through iframe

Because frameset and body are on the same level, y...

HTML Tutorial: Collection of commonly used HTML tags (6)

Related articles: Beginners learn some HTML tags ...