在 jQuery 中如何获取自定义属性的值?
要在 jQuery 中获取值,请使用带有 data() 方法的 data-attributes。你可以尝试运行以下代码来实现如何获取自定义属性的值
示例
<html> <head> <title>Selector Example</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { alert($('#my_id').data('original-title')); }); </script> </head> <body> <strong id="my_id" data-original-title="Hello">Demo</strong> </body> </html>
广告