最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - jQuery can't apply onmousedown to anchor tags - Stack Overflow

programmeradmin5浏览0评论

I have a navigation menu like this

<ul id="nav">
<li> <a id="firstLink" href="#"> Link 1 </a> </li>
<li> <a id="secondLink" href="#"> Link 2 </a> </li>
<li> <a id="thirdLink" href="#"> Link 3 </a> </li>
<li> <a id="fourthLink" href="#"> Link 4 </a> </li>
</ul>

I'd like to associate a function to each anchor tag as the mouse is down so I have an external js file and my code is

$(document).ready(function() {
$('#firstLink').onmousedown(doSomething());
[ ... ]
});

function doSomething() {
// this function does something
}

My problem is if I put the event handler inline, the script works and no issue is brought up.

<li> <a href="#" id="firstLink" onmousedown="doSomething()"> Link 1 </a> </li>

On the other hand if I use the external file, as shown above, nothing happens and Chrome gives me back Uncaught TypeError: Object [object Object] has no method onmousedown, Firefox and Firebug return me $("#firstLink").onmousedown is not a function. I don't understand, what am I doing wrong?

I have a navigation menu like this

<ul id="nav">
<li> <a id="firstLink" href="#"> Link 1 </a> </li>
<li> <a id="secondLink" href="#"> Link 2 </a> </li>
<li> <a id="thirdLink" href="#"> Link 3 </a> </li>
<li> <a id="fourthLink" href="#"> Link 4 </a> </li>
</ul>

I'd like to associate a function to each anchor tag as the mouse is down so I have an external js file and my code is

$(document).ready(function() {
$('#firstLink').onmousedown(doSomething());
[ ... ]
});

function doSomething() {
// this function does something
}

My problem is if I put the event handler inline, the script works and no issue is brought up.

<li> <a href="#" id="firstLink" onmousedown="doSomething()"> Link 1 </a> </li>

On the other hand if I use the external file, as shown above, nothing happens and Chrome gives me back Uncaught TypeError: Object [object Object] has no method onmousedown, Firefox and Firebug return me $("#firstLink").onmousedown is not a function. I don't understand, what am I doing wrong?

Share Improve this question edited Jun 10, 2012 at 18:22 TazGPL 3,7462 gold badges40 silver badges60 bronze badges asked Aug 1, 2011 at 14:22 haunted85haunted85 1,6717 gold badges24 silver badges40 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 12
$('#firstLink').onmousedown(doSomething());

should be

$('#firstLink').mousedown(doSomething);

It is mousedown and not onmousedown.

$(document).ready(function() {
$('#firstLink').mousedown(doSomething());
[ ... ]
});

you can prevent the default event by doing something like this:

$('#firstLink').onmousedown(function(e){

e.preventDefault();


// do something

}); 

Documentation here

But you might want to condier using ´.click()´ instead of mousedown.

You could also use the "on" event handler. As of Jquery 1.7, this is the proper way to attach an Event - it replaces bind(), delegate() and live().

$(document).ready(function() {
 $('#firstLink').on("mousedown", doSomething());
});
发布评论

评论列表(0)

  1. 暂无评论