jquery – 获取自定义属性的值

前端之家收集整理的这篇文章主要介绍了jquery – 获取自定义属性的值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个单选按钮.我想要获取检查的单选按钮的自定义属性“xmlvalue”的值.

我尝试使用以下脚本:

var userType = $("input[name=ctrl_CustomerType]:checked",this).attr('xmlvalue');

标记

<input type="radio" name="ctrl_CustomerType" id="ctrl_CustomerType_1" xmltag="CustomerType" xmlvalue="existingCustomer" checked="checked"> Yes
<br />
<input type="radio" name="ctrl_CustomerType" id="ctrl_CustomerType_2" xmltag="CustomerType" xmlvalue="newCustomer"> No

Fiddle here

– 但是我不断得到“未定义”.

有任何想法吗?

解决方法

删除选择器的上下文:

http://jsfiddle.net/NrQek/1/

var userType = $("input[name=ctrl_CustomerType]:checked").attr('xmlvalue');
        alert("xmlvalue is: " + userType);
原文链接:https://www.f2er.com/jquery/180280.html

猜你在找的jQuery相关文章