简体   繁体   中英

jQuery - Triggering Events from Clicking on a Link Issue

I'd like to trigger an event when a link is clicked both by clicking on it normally or by opening it in a new tab (eg, middle click, ctrl + click, etc)

I've tried the following so far:

$('a').click(myfunc) Doesn't capture middle clicks.

$('a').mousedown(myfunc) works, but it seems to be preventing the link from being followed even though my function doesn't call event.preventDefault .

Any ideas how to do this then?

Try returning true from your handler function. Returning nothing can be interpreted by the browser as a void return and thus prevent the default action from being carried out.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM