我一直在试图让这个开始工作,我确信这很简单!
我有一个包含多个链接的div的页面,我想绑定div中其中一个链接的点击以点击另一个链接。
结构的一个例子:
<div>
<a>A link that is to be binded to another</a>
<a>Link that needs to be fired</a>
</div>
<div>
<a>A link that is to be binded to another</a>
<a>Link that needs to be fired</a>
</div>
<div>
<a>A link that is to be binded to another</a>
<a>Link that needs to be fired</a>
</div> <!-- This repeats upto around 20 times on a page -->
因此,如果有人点击div中的第一个链接,则会触发第二个链接!
希望这有点道理。我的大脑一直在看这个问题太久了,我担心自己不会很快解决这个问题。
干杯
答案 0 :(得分:3)
$("div > a").first().on("click", function(e){
e.preventDefault();
$(this).next("a").trigger("click");
});
这样的东西?