SoFunction
Updated on 2025-04-03

Solutions to the failure of jump under IE

Copy the codeThe code is as follows:

<a href="javascript:void(0)" >GoNext</a>
$("a").click(function(){
= "";
})

The code is as above. Under IE, especially in IE6, after clicking the hyperlink, the browser does not jump.

The reason may be because of the event behavior blocked by javascript:void(0) in href, the solution is as follows:

1. Add return false to the onclick event to prevent bubbles:
Copy the codeThe code is as follows:

$("a").click(function(){
= "";
reutrn false;
})

2. Delay 100 milliseconds
Copy the codeThe code is as follows:

$("a").click(function(){
setTimeout(function(){
= "";
},100);
})