Sometimes, we need to use the hyperlink <a> instead of href to complete the jump, but instead use this method: <a href="#" onClick="fun()"></a>. This way, the page will not jump. But it also brings some negative problems, such as the page title becomes "#", or a scroll bar appears on the page. This is because after the onClick event is executed, <a> jumps to the address pointed to by href, and "#" is an anchor point, which defaults to the top of the web page, so it will cause the problem mentioned above. There are two solutions: 1. Add a return false statement to the onClick event, for example: <a href="#" onClick="fun(); return false;">Click</a> 2. Use void(0) instead of #, for example: <a href="javascript:void(0)" onclick="fun()">Click</a> |
<<: MySQL series 15 MySQL common configuration and performance stress test
>>: A few front-end practice summaries of Alipay's new homepage
First we need to know the self-calling of the fun...
The async_hooks module is an experimental API off...
Install jdk: Oracle official download https://www...
This article example shares the specific code of ...
Concurrency Functions time for i in `grep server ...
This article example shares the specific code of ...
Table of contents Preface🌟 1. API Introduction 2....
Table of contents Merge namespaces with the same ...
console.log( [] == ![] ) // true console.log( {} ...
Attribute check-strictly The official document pr...
Table of contents 1. Prepare the springboot proje...
Table of contents 1. Task Queue 2. To explain som...
Recently, I started upgrading my blog. In the proc...
Table of contents 1. Download 2. Installation and...
One of the most commonly used and discussed data ...