本文介绍了如何检查表格中输入文字焦点的复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试检查表DOM中有关输入文本焦点的复选框,但是无法访问checkbox元素,但是我的焦点正在工作

I am trying to check a checkbox in table DOM on focus of input text, but am not able to access the checkbox element, but my focus is working

这是我的jsfiddle链接 https://jsfiddle.net/9qha9vft/

and here is my jsfiddle link https://jsfiddle.net/9qha9vft/

这是我的代码

jQuery代码

$("td .focus-evt").focus(function() {

$(this).siblings("td input.flat").prop('checked', true);;

});

推荐答案

您的输入和复选框不是兄弟姐妹,它们位于不同的TD.

Your input and checkbox aren't siblings, they are in different TD's.

转到最近的TR,然后找到TD和复选框

Go to the closest TR, then find the TD and checkbox

$("td .focus-evt").focus(function() {
    $(this).closest('tr').find("td input.flat").prop('checked', true);;
});

FIDDLE

这篇关于如何检查表格中输入文字焦点的复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 14:00