单击此按钮可在 td 内引用锚点
这是我所拥有的:
<td class="player"><a class="link" data-display="0" data-id="1" data-workdir="4">Image.jpg</a></td>
好的,这是我的 jQuery:
$(".player").click(function(){
alert($(this + " a.link").attr("data-display"));
// Código para llamar al reproductor indicado
$.post(
"php/player.php",
{ display : $(this).attr("data-display"), id : $(this).attr("data-id"), workdir : $(this).attr("data-id") },
function(data){
alert(data);
}
);
});
我想做的是当一个人点击 td 时传递锚点内部的属性,当这个人点击 td 外部的 tr 时做同样的事情也很好,但 td 也可以。 (该警报只是一个实验,看看我是否可以引用内部链接,但它不起作用)。我也知道我可以将属性放入 td 中,让我的生活更轻松,但我也想学习。
here is what i have:
<td class="player"><a class="link" data-display="0" data-id="1" data-workdir="4">Image.jpg</a></td>
Ok, and here is my jQuery:
$(".player").click(function(){
alert($(this + " a.link").attr("data-display"));
// Código para llamar al reproductor indicado
$.post(
"php/player.php",
{ display : $(this).attr("data-display"), id : $(this).attr("data-id"), workdir : $(this).attr("data-id") },
function(data){
alert(data);
}
);
});
What i'm trying to do is to pass the attributes that are inside the anchor when a person clicks the td, it would be also great to do the same when the person clicks the tr outside the td, but the td will do.
(The alert is just an experiment to see if i can reference the inside link, but it didn't work). I also know that i can put the attributes inside the td and make my life easier, but i would also like to learn.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我猜对了,这就是您所需要的:
alert($("a.link", this).attr("data-display"));
If i get it right, this is what you need:
alert($("a.link", this).attr("data-display"));
您可以使用
.find()
获取后代元素(或.children()
以及在本例中),就像这样:你可以在这里尝试一下,对于其他相关方法,你想要jQuery API 的树遍历部分。
You can use
.find()
to get a descendant element (or.children()
as well, in this case), like this:You can give it a try here, for other relative methods, you want the tree traversal section of the jQuery API.