最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Change background color of a table row on click - Stack Overflow

programmeradmin1浏览0评论

On my webpage, I have a table and I'd like to change the background of a row, and in the process, check the radio button corresponding to that row when the row is clicked. I tried the following using jquery :

<style>
  .active { background-color: #8fc3f7;}
</style>  
<script>
$(document).ready(function() 
  {
    $('#reqtablenew tr').click(function () 
       {
         $('#reqtablenew tr').removeClass("active");
         $(this).addClass("active");
       });
  });
<script>

Any thoughts as to what I might be doing wrong or any workaround would be very wele. I have included the following scripts in the page. src=".9.1.js"> and src=".10.3/jquery-ui.js"

Here's a fiddle of my table /

On my webpage, I have a table and I'd like to change the background of a row, and in the process, check the radio button corresponding to that row when the row is clicked. I tried the following using jquery :

<style>
  .active { background-color: #8fc3f7;}
</style>  
<script>
$(document).ready(function() 
  {
    $('#reqtablenew tr').click(function () 
       {
         $('#reqtablenew tr').removeClass("active");
         $(this).addClass("active");
       });
  });
<script>

Any thoughts as to what I might be doing wrong or any workaround would be very wele. I have included the following scripts in the page. src="http://code.jquery./jquery-1.9.1.js"> and src="http://code.jquery./ui/1.10.3/jquery-ui.js"

Here's a fiddle of my table http://jsfiddle/Gz668/5/

Share Improve this question edited Nov 14, 2013 at 6:29 Ankur Chachra asked Nov 14, 2013 at 6:24 Ankur ChachraAnkur Chachra 1315 silver badges17 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

You forgot to add jquery

Add this in you css

tr.active td {
   background-color: #8fc3f7;
}

I have updated your demo to this

Updated to check the radio try this,

$(this).find('[name="reqradio"]').prop('checked',true);

Full Code

$(document).ready(function () {
    $('#reqtablenew tr').click(function () {
        $('#reqtablenew tr').removeClass("active");
        $(this).addClass("active");
        $(this).find('[name="reqradio"]').prop('checked',true);
    });
});

Demo

The problem is the td got background color too

.newreqtable td {
   .....
   background-color:#ffffff;

So you need to enforce your active class, e.g.

tr.active td{background-color: #8fc3f7;}

See this: http://jsfiddle/Gz668/9/

Something like this ... :

$(this).find('input').prop('checked', true);

.. will check the radiobutton of the clicked row.

[Fiddle] (http://jsfiddle/McNull/LwT9N/)

发布评论

评论列表(0)

  1. 暂无评论