作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何影响复选框的文本点击?现在,它的工作原理是,当我们单击一个复选框时,它就会被选中,我想在单击相应的文本时也选择它。这是我的代码,
<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>
最佳答案
尝试将文本包装到标签元素中,如下所示。
<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/
我是一名优秀的程序员,十分优秀!