I want to call 2 different jquery functions to hide links如何調用不同<a href="">
<a href="">.zip file, first link
</a>
<script>
$("a").click(function() {
location.href="first.location";
return false;
});
</script>
<a href="">.tar.gz file, second link
</a>
<script>
$("a").click(function() {
location.href=="second.location";
return false;
});
</script>
How can I call the 2 functions so that I call the first one clicking the first link and the second one clicking the second link?
Thanks a lo
你最好給那些錨定一個id,並用它來綁定一個點擊處理器給他們 – billyonecan
你可能也想給你的'href'sa'#'值 –
你在做什麼事情處理器內部?因爲事實上,你根本不需要事件處理程序。 –