jQuery onClick捕获元素的id

前端之家收集整理的这篇文章主要介绍了jQuery onClick捕获元素的id前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有很多这样的输入字段
<input type="radio" name="name" id="name" onchange="enableTxt()" />

当我点击这个单选按钮我想捕获无线电输入的ID。我正在使用以下代码

function enableTxt() {
    var id = $(this).attr("id");
    alert(id);
}

我得到这个错误

a.attributes is undefined

解决方法

HTML:
<input type="radio" name="name" id="name" onchange="enableTxt(this)" />

JS:

function enableTxt(elem) {
    var id = $(elem).attr("id");
    alert(id);
}
原文链接:https://www.f2er.com/jquery/181707.html

猜你在找的jQuery相关文章