gpt4 book ai didi

javascript - 通过 onclick Javascript 函数传递 td 单元格的值

转载 作者:行者123 更新时间:2023-11-30 11:45:26 25 4
gpt4 key购买 nike

我有一个包含字符串(用作标签)的 20 行单列 html 表:

<table id="table_of_tags">
<tr>
<td id="c_01" onclick="Pass_Content_Of_Cell(_param)">Tree</td>
</tr>
<tr>
<td id="c_02" onclick="Pass_Content_Of_Cell(_param)">Flower</td>
</tr>
....
</table>

函数 Pass_Content_of_Cell() 必须传递单击的单元格的内容,并将标签连接成单个标签字符串:“Flower;Tree;” (它做什么不相关)。

用户可以按他喜欢的任何顺序随机点击任何标签。

问题:我究竟应该为 _param 使用什么?我尝试了 this.valuethis.text 但没有得到任何有用的信息。

最佳答案

试试这个

onclick="Pass_Content_Of_Cell(this.innerText)"

或者如果你想要标记,

onclick="Pass_Content_Of_Cell(this.innerHTML)"

关于javascript - 通过 onclick Javascript 函数传递 td 单元格的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41143894/

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