如何使用 jQuery 设置属性的新值?
jQuery attr() 方法用于获取属性的值。还可以使用它来设置新值。我们将把属性 href 的新值从教程时点 .com/css 设置为 tutorialspoint.com/html5。
你可以尝试运行以下代码来了解如何在 jQuery 中设置属性的新值 −
示例
<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(){ $("button").click(function(){ $("#tpoint").attr("href", "https://tutorialspoint.com/html5"); }); }); </script> </head> <body> <p><a href="https://tutorialspoint.com/css" id="tpoint">Tutorialspoint</a></p> <button>Set new value</button> <p>The value of above link will change on clicking the above button. This will set a new value for the attribute. Check before and after button click.</p> </body> </html>
广告