http://stackoverflow.com/questions/6625667/jquery-click-get-value-of-attributes-of-a-href
/* Add a listner to Group buttons */ $(‘a.preActNav‘).click(function() { alert(this.seq) }); <li><a href="#preclose4" data-theme="a" data-icon="arrow-d" data-transition="none" seq=‘1‘ class="preActNav" ID="preActNavA">A</a></li> <li><a href="#preclose4" data-theme="a" data-icon="arrow-d" data-transition="none" seq=‘2‘ class="preActNav" ID="preActNavB">B</a></li>
alert($(this).attr(‘seq‘));
Although it may be better to put seq
as another data element:
<li><a href="#preclose4" data-theme="a" data-icon="arrow-d" data-transition="none" data-seq=‘1‘ class="preActNav" ID="preActNavA">A</a></li>
So then you can do:
alert($(this).data(‘seq‘));
jquery click & get value of attributes of a href,布布扣,bubuko.com
jquery click & get value of attributes of a href
原文地址:http://www.cnblogs.com/zhxm/p/3819264.html