javascript - JQuery : Get div defined in same table row - Stack Overflow

I have an HTML table created dynamically using an MVC application and the output of the table is as sho

I have an HTML table created dynamically using an MVC application and the output of the table is as shown below:

In the onclick event of the edit button I want to show divText and hide divLabel of the same row using jQuery.

I have tried to get divLabel as shown below:

function EditRecord(elem) {
  var divlabel = $(elem).closest('tr').children('td div#divLabel');
}
<script src=".11.1/jquery.min.js"></script>
<table>
  <tr>
    <td>
      <div id="divLabel">
        value 1
      </div>
      <div id="divText" style="display: none">
        <input type="text" value="value 1" />
      </div>
    </td>
    <td>
      <input type="button" value="edit" onclick="EditRecord(this);" />
    </td>
  </tr>
  <tr>
    <td>
      <div id="divLabel">
        value 2
      </div>
      <div id="divText" style="display: none">
        <input type="text" value="value 1" />
      </div>
    </td>
    <td>
      <input type="button" value="edit" onclick="EditRecord(this);" />
    </td>
  </tr>
</table>

I have an HTML table created dynamically using an MVC application and the output of the table is as shown below:

In the onclick event of the edit button I want to show divText and hide divLabel of the same row using jQuery.

I have tried to get divLabel as shown below:

function EditRecord(elem) {
  var divlabel = $(elem).closest('tr').children('td div#divLabel');
}
<script src="https://ajax.googleapis./ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<table>
  <tr>
    <td>
      <div id="divLabel">
        value 1
      </div>
      <div id="divText" style="display: none">
        <input type="text" value="value 1" />
      </div>
    </td>
    <td>
      <input type="button" value="edit" onclick="EditRecord(this);" />
    </td>
  </tr>
  <tr>
    <td>
      <div id="divLabel">
        value 2
      </div>
      <div id="divText" style="display: none">
        <input type="text" value="value 1" />
      </div>
    </td>
    <td>
      <input type="button" value="edit" onclick="EditRecord(this);" />
    </td>
  </tr>
</table>

But it is not working for me.

Share Improve this question edited Nov 15, 2016 at 22:16 Paul T. Rawkeen 4,1143 gold badges36 silver badges52 bronze badges asked Nov 21, 2013 at 11:38 SpiderCodeSpiderCode 10.1k2 gold badges25 silver badges42 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

You're pretty close. There are two issues:

  1. Your HTML is invalid. You cannot reuse the same id for multiple elements. You can use a class instead:

    <tr>
        <td>
            <!-- Note 'class' rather than 'id' below -->
            <div class="divLabel">
                value 1
            </div>
            <!-- Note 'class' rather than 'id' below -->
            <div class="divText" style="display: none">
                <input type="text" value="value 1" />
            </div>
        </td>
        <td>
            <input type="button" value="edit" onclick="EditRecord(this);" />
        </td>
    </tr>
    
  2. closest is right, but children isn't. You want find instead, because the div isn't an immediate child of the row.

So assuming you change your HTML as per #1, we'd use find with a class selector for #2:

function EditRecord(elem) {
    var divlabel = $(elem).closest('tr').find('div.divLabel');
}

Try This one It should work for me

<head>
<script src="http://ajax.googleapis./ajax/libs/jquery/1.8/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
  function EditRecord(elem) {
    var chg = $(elem).closest('tr').children('td').siblings(':first-child');
    chg.find('div:first-child').hide();
    chg.find('div:nth-child(2)').show();
        }
</script>
</head>

You don't need onclick="EditRecord(this);", delete that out. Doing it that way couples your javascript to your html which you can avoid using jQuery.

In jQuery do it like this

$("input[type='button'][value='edit']").click(function(event) {
    var row = $(event.target).closest('tr');
    row.find('.divText').show();
    row.find('.divLabel').hide();
});

*Note change divText and divLabel to css classes because you can't have two id's in HTML with the same name.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743702644a4492833.html

相关推荐

  • javascript - JQuery : Get div defined in same table row - Stack Overflow

    I have an HTML table created dynamically using an MVC application and the output of the table is as sho

    16小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信