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
Hello everyone, today when I was looking at the H...
webpack-dev-server core concepts Webpack's Co...
Recently, due to the increase in buttons in the b...
This article shares the specific code of the WeCh...
Solution function mergeImgs(list) { const imgDom ...
Table of contents definition Constructor bodies a...
1. Installation and use First, install it in your...
Problem description: The user has a requirement t...
Application example website http://www.uhuigou.net...
Preface JSON is a lightweight data exchange forma...
There are probably as many modular solutions for ...
Table of contents Phenomenon Root Cause Analysis ...
Method 1: Download Pycharm and install Download a...
1 Download The address is: https://dev.mysql.com/...
1. Introduction When you encounter a requirement ...