gpt4 book ai didi

javascript - 影响Reactjs中复选框的文本点击

转载 作者:行者123 更新时间:2023-12-02 22:45:45 25 4
gpt4 key购买 nike

如何影响复选框的文本点击?现在,它的工作原理是,当我们单击一个复选框时,它就会被选中,我想在单击相应的文本时也选择它。这是我的代码,

<tr key={taskList.PriorityID}>
<td style={{'width':'100px'}}><input type='radio' id={taskList.ID} name={'ID: ' + taskList.ID} onClick={_onclick} checked={selected} /></td>
<td className="dashboard-post-payment_table-cell" title={'TaskList: ' + taskList.Priority}>{taskList.Priority}</td>
</tr>

enter image description here

最佳答案

尝试将文本包装到标签元素中,如下所示。

<td style={{'width':'100px'}}>
<input type='radio' id={taskList.ID} name={'ID: ' + taskList.ID} onClick={_onclick} checked={selected} />
</td>
<td className="dashboard-post-payment_table-cell" title={'TaskList: ' + taskList.Priority}>
<label for={'ID: ' + taskList.ID}> {taskList.Priority}</label>
</td>

关于javascript - 影响Reactjs中复选框的文本点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58406218/

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