gpt4 book ai didi

javascript - 在表格内的文本框中输入数据时选中复选框

转载 作者:行者123 更新时间:2023-11-29 22:01:21 24 4
gpt4 key购买 nike

我想知道当在表格内的文本框中输入数据时,是否可以'Checked=true' ROW 的复选框。

这是执行此操作的代码 jquery 代码,但要选中所有复选框。我将不胜感激任何帮助。

j查询代码:

<script>
jQuery('[id$="enteredValue"]').change(function() {
jQuery('[id$="check"]').attr('checked', true);
});
</script>

html代码

<table id="table-2">
<thead>
<tr>
<th>Select</th>
<th>Enter Qty</th>
<th> Suggested Units</th>
<th> Cost</th>
<th>Brand</th>
</tr>
<thead>
<tbody>
<tr>
<td><apex:inputCheckbox id="check" value="{!objectRow.selected}"/> </td>
<td><apex:inputText id="enteredValue" value=" {!objectRow.EnteredValue}" /></td>
<td><apex:outputText value="{!objectRow.Reorder_Amount}"/></td>
<td><apex:outputText value="{!objectRow.Reorder_Cost}" /></td>
<td><apex:outputText value="{!objectRow.Brand}" /></td>
</tr>
</tbody>
</table>

最佳答案

试试这个..

<script>
jQuery('[id$="enteredValue"]').change(function() {
$(this).closest('tr').find('[id$="check"]').prop('checked', true);
if(this.val()=="")
{
$(this).closest('tr').find('[id$="check"]').prop('checked', false);
}
});
</script>

关于javascript - 在表格内的文本框中输入数据时选中复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23568294/

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