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

JavaScript implements changing the color of a web page through a slider

Hello everyone, today when I was looking at the H...

Detailed explanation of webpack-dev-server core concepts and cases

webpack-dev-server core concepts Webpack's Co...

How to implement multiple parameters in el-dropdown in ElementUI

Recently, due to the increase in buttons in the b...

WeChat applet realizes the effect of shaking the sieve

This article shares the specific code of the WeCh...

js uses Canvas to merge multiple pictures into one implementation code

Solution function mergeImgs(list) { const imgDom ...

Let's talk in depth about the principle and implementation of new in JS

Table of contents definition Constructor bodies a...

How to implement form validation in Vue

1. Installation and use First, install it in your...

Instructions for using JSON operation functions in Mysql5.7

Preface JSON is a lightweight data exchange forma...

CSS modular solution

There are probably as many modular solutions for ...

Implementation of the Pycharm installation tutorial on Ubuntu 18.04

Method 1: Download Pycharm and install Download a...

Sample code for highlighting search keywords in WeChat mini program

1. Introduction When you encounter a requirement ...