当我点击一个按钮时,我想获得rel
属性:(使用类选择器进行定位)
<button class="nameClass" rel="relName">Content</button>
为此我正在尝试
$(".nameClass").click(function(){
// Here I want to get the rel content of the button that I clicked
})
提前致谢 最好的问候
答案 0 :(得分:2)
$(".nameClass").click(function(){
alert($(this).attr('rel'));
})
答案 1 :(得分:0)
$(".nameClass").click(function(){
// Here I want to get the rel content of the button that I clicked
var myRel = $(this).attr('rel');
})
答案 2 :(得分:0)
FIDDLE Attr用于通过提供密钥来获取值,因此你使用rel就像属性&#34; name&#34;。
在这里,你在这里提供关键的rel,你得到它的价值。
$(".nameClass").on("click",function(){
console.log($(this).attr('rel'));
})