将数据传递给jQuery click()函数

将数据传递给jQuery click()函数,第1张

将数据传递给jQuery click()函数

如果您坚持使用老式的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>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5564860.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存