如何使用 JQuery 中的“click”事件获取元素属性?
要获取元素属性,请在 jQuery 中使用 attr() 方法。可以尝试运行以下代码以使用“click”事件获取元素属性 −
示例
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ alert("Width of image: " + $("img").attr("width")); }); }); </script> </head> <body> <img src="/videotutorials/images/coding_ground_home.jpg" alt="Coding Ground" width="284" height="280"><br> <button>Get Width</button> </body> </html>
广告