如果您坚持使用老式的HTML 4.01或XHTML:
$('.removeAction').click(function() { // Don’t do anything crazy like `$(this).attr('id')`. // You can get the `id` attribute value by simply accessing the property: this.id; // If you’re prefixing it with 'my' to validate as HTML 4.01, you can get just the ID like this: this.id.replace('my', '');});
顺便说一句,在HTML5中,该
id属性可以以数字开头,甚至 是
一些。
再说一次,如果仍然使用HTML5,最好使用自定义数据属性,如下所示:
<span data-id="1">Remove</span>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)