如何用不同的<a href=""></a>调用jquery函数

时间:2013-06-25 08:53:22

标签: javascript jquery html

我想调用2个不同的jquery函数来隐藏链接

<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>

如何调用2个函数,以便我调用第一个单击第一个链接,第二个单击第二个链接?

谢谢你

8 个答案:

答案 0 :(得分:4)

这不是最好的解决方案。为了获得最佳结果,您可能需要重新构建html并向链接或其父级添加某种类和ID以识别它们。但这将有效

第一个链接

$("a:eq(0)").click(function() {
location.href="first.location";
return false;
});

和第二个链接

 $("a:eq(1)").click(function() {
 location.href=="second.location";
 return false;
 });

答案 1 :(得分:2)

如果您在标记中设置了href,则无需JQueryJavascript

<a href="first.location">.zip file, first link
</a>

<a href="second.location">.tar.gz file, second link
</a>

答案 2 :(得分:1)

您可以在此处使用:eq() Selector,如:

// Clicking the first link
$("a:eq(0)").click(function () {
    location.href = "first.location";
    return false;
});

// Clicking the second link
$("a:eq(1)").click(function () {
    location.href = "second.location";
    return false;
});

答案 3 :(得分:1)

就像已经建议的那样,最好的方法是为这些标签设置不同的id。但如果由于某种原因你不想分配ID(为什么你会这样做?)你可以做以下事情:

将锚标记包装在一个div中并给它一个像这样的id

 <div id="myDiv">
  <a href="#">First Link</a>
  <a href="#">Second Div</a>
 </div >

然后使用jQuery进行链接:

<script>
 $(function(){
   $("myDiv").children(a:first-child).click(function(){
      // Do stuff here
   });

   $("myDiv").children(a:last-child).click(function(){
      // Do stuff here
   });
 });
</script>

答案 4 :(得分:0)

我认为这可能会有所帮助:

<a id="first" href="">.zip file, first link</a>
<script>
  $("first").click(function() {
    location.href="first.location";
    return false;
  });
</script>

<a id="second" href="">.tar.gz file, second link </a>

<script>
  $("second").click(function() {
    location.href=="second.location";
    return false;
  });
</script>

答案 5 :(得分:0)

您可以为链接引入id属性。然后根据元素的id触发事件。

<a href="" id='link1'>.zip file, first link
</a>
<script>
$("#link1").click(function() {
location.href="first.location";
return false;
});
</script>

<a href="" id='link2'>.tar.gz file, second link
</a>

 <script>
 $("#link2").click(function() {
 location.href=="second.location";
 return false;
 });

 </script>

答案 6 :(得分:0)

在html(href)中提供链接

$("a").click(function()
{
    location.href = $(this).attr('href');
    return false;

});

答案 7 :(得分:0)

$("a:eq(0)").click(function() { location.href="first.location"; return false; });

$("a:eq(1)").click(function() { location.href=="second.location"; return false; });