jQuery给出输入ID,获取标签文本

前端之家收集整理的这篇文章主要介绍了jQuery给出输入ID,获取标签文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的 HTML表单(如大多数 HTML表单)中,标签与字段共享相同的ID.一旦点击了具有匹配ID的复选框,我试图返回标签标签的HTML.
<input id="yes1" type="checkBox">
<label for="yes1">This is the text it should return.</label>

和我的jQuery:

$('input').change(function() {
    if (this.checked) {
        var response = $('label#' + $(this).attr('id')).html();
    }
}

但唉,响应出来是空的.

解决方法

$('input').change(function() {
    if (this.checked) {
        var response = $('label[for="' + this.id + '"]').html();
    }
});

不需要从属性获取id.

演示:http://jsfiddle.net/wycvy/

原文链接:https://www.f2er.com/jquery/179559.html

猜你在找的jQuery相关文章