如何防止 onclick 方法中的默认事件处理?

如何防止 onclick 方法中的默认值?我有一个方法,在这个方法中我还要传递一个自定义值

<a href="#" onclick="callmymethod(24)">Call</a>
function callmymethod(myVal){
//doing custom things with myVal
//here I want to prevent default
}
232817 次浏览

Let your callback return false and pass that on to the onclick handler:

<a href="#" onclick="return callmymethod(24)">Call</a>


function callmymethod(myVal){
//doing custom things with myVal
//here I want to prevent default
return false;
}

To create maintainable code, however, you should abstain from using "inline Javascript" (i.e.: code that's directly within an element's tag) and modify an element's behavior via an included Javascript source file (it's called unobtrusive Javascript).

The mark-up:

<a href="#" id="myAnchor">Call</a>

The code (separate file):

// Code example using Prototype JS API
$('myAnchor').observe('click', function(event) {
Event.stop(event); // suppress default click behavior, cancel the event
/* your onclick code goes here */
});

Try this (but please use buttons for such cases if you don't have a valid href value for graceful degradation)

<a href="#" onclick="callmymethod(24); return false;">Call</a>

In my opinion the answer is wrong! He asked for event.preventDefault(); when you simply return false; it calls event.preventDefault(); AND event.stopPropagation(); as well!

You can solve it by this:

<a href="#" onclick="callmymethod(event, 24)">Call</a>
function callmymethod(e, myVal){
//doing custom things with myVal


//here I want to prevent default
e = e || window.event;
e.preventDefault();
}

Just place "javascript:void(0)", in place of "#" in href tag

<a href="javascript:void(0);" onclick="callmymethod(24)">Call</a>

Give a class or id to the element and use jquery function unbind();

$(".slide_prevent").click(function(){
$(".slide_prevent").unbind();
});

You can catch the event and then block it with preventDefault() -- works with pure Javascript

document.getElementById("xyz").addEventListener('click', function(event){
event.preventDefault();
console.log(this.getAttribute("href"));
/* Do some other things*/
});

This worked for me

<a href="javascript:;" onclick="callmymethod(24); return false;">Call</a>

It would be too tedious to alter function usages in all html pages to return false.

So here is a tested solution that patches only the function itself:

function callmymethod(myVal) {
// doing custom things with myVal


// cancel default event action
var event = window.event || callmymethod.caller.arguments[0];
event.preventDefault ? event.preventDefault() : (event.returnValue = false);


return false;
}

This correctly prevents IE6, IE11 and latest Chrome from visiting href="#" after onclick event handler completes.

Credits:

If you need to put it in the tag. Not the finest solution, but it will work.

Make sure you put the onclick event in front of the href. Only worked for my this way.

<a onclick="return false;" href="//www.google.de">Google</a>

Another way to do that is to use the event object inside the attribute onclick (without the need to add an additional argument to the function to pass the event)

function callmymethod(myVal){
console.log(myVal);
}
<a href="#link" onclick="event.preventDefault();callmymethod(24)">Call</a>

Several different answers. Even after so many years, the question is still relevant. Therefore, here is the compilation:

// 1
function myFn1 (e, value) {
console.log('value:', value)
e.preventDefault();
}


// 2
function myFn2 (value) {
console.log('value:', value)
return false;
}


// 3,5,6,7
function myFn3 (value) {
console.log('value:', value)
}


// 4
document.getElementById("clicki-1").addEventListener('click', function(event){
event.preventDefault();
console.log('value:',this.getAttribute("data-value"));
});
<h3>onclick Attribute</h3>
<div>
<a href="/hello" onclick="myFn1(event, 42)">Click 1</a>
</div>


<div>
<a href="/hello" onclick="return myFn2(42)">Click 2</a>
</div>


<div>
<a href="/hello" onclick="myFn3(42); return false;">Click 3</a>
</div>


<h3>EventListener (addEventListener)</h3>
<div>
<a href="/hello" id="clicki-1" data-value="42">Click 4</a>
</div>


<h3>onclick Attribute without linkaddress when hovering</h3>
<div>
<a href="javascript:;" onclick="event.preventDefault(); myFn3(42)">Click 5</a>
</div>


<div>
<a href="javascript:void(0);" onclick="myFn3(42)">Click 6</a>
</div>


<div>
<a href="javascript:;" onclick="myFn3(42)">Click 7</a>
</div>


<h5>Set Anchor Hashtag</h5>
<div>
<a href="#" onclick="myFn3(42)">Click 8</a>
</div>

I prefer the variant 2 with return false; if it has to go quickly. And otherwise variant 4 (AddEventListener).

Consider using a form instead of a link. Then, all you really need to do is add:

<input type="submit" onclick="event.preventDefault();">

You probably want to handle it though so in total you'd probably do something more like this:

function myFunction() {
if (confirm("Are you sure you want to ...? This action cannot be undone.")) {
document.getElementById("myForm").submit();
}
}
<form method="post" action="/test" id="myForm">
<input type="submit" onclick="event.preventDefault();myFunction();">
</form>

This allows the user to click ok to proceed or cancel to not have it submit the form.