Javascript 定位 tr 元素
我正在尝试使用“.venue_table”类来定位表内的元素。我想在每次单击元素时切换/取消切换突出显示的背景颜色。这不起作用:
<script>
$(document).ready(function(){
$(".income_table tr").click(function () {
$(this).toggleClass("toggled_tr");
});
});
</script>
我的代码有问题吗?
Im trying to target elements inside of a table with the class '.income_table'. I want to toggle/untoggle a highlighted background color each time a element gets clicked. This isn't working:
<script>
$(document).ready(function(){
$(".income_table tr").click(function () {
$(this).toggleClass("toggled_tr");
});
});
</script>
Is there a problem with my code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我有用:http://jsfiddle.net/mplungjan/xBzPW/
Works for me : http://jsfiddle.net/mplungjan/xBzPW/
看起来是对的,但您可能需要定位 TD 并在那里应用该类。尝试:
It looks right, you may need to target the TDs though and apply the class there. Try: