BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="//cdn.staticfile.net/jquery/1.4.2/jquery.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ alert($("#runoob").attr("href")); }); }); </script> </head> <body> <p><a href="http://www.waitang.com" id="runoob">外唐教程网</a></p> <button>显示 href 属性的值</button> </body> </html>
运行结果