gpt4 book ai didi

javascript - 使用 JQuery 将类型添加到 DOM 元素

转载 作者:行者123 更新时间:2023-11-28 19:41:49 26 4
gpt4 key购买 nike

我正在尝试附加 type=checkbox到最后td每个tr

我一直在尝试通过遍历来实现这一目标,但我不知道它是否可行。与此类似的事情。

$('#myID tr').children("td:nth-last-of-type(1)").addClass("me");

我知道这是向元素添加一个类,但是可以用类似的方式添加 TYPE 吗?到tr DOM 元素?有一两个例子,例如 this一种,但它的全部内容是更改类型而不是添加新类型。

<table id="myID" class="myClass">
<tr>
<th>one</th>
<th>two</th>
<th>three</th>
<th>four</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
<td type='checkbox'></td> <!-- **THIS IS WAHT IM AFTER** -->
</tr>
</table>

<input type='button' id='but_id' value='Click Me'/>

最佳答案

您不能将 type="checkbox 添加到 td,它没有用且无效,但您可以将 checkbox 添加到 td 例如

$('#myID tr').children("td:nth-last-of-type(1)").append('<input type="checkbox" />');

关于javascript - 使用 JQuery 将类型添加到 DOM 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24906773/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com