如何使用 jQuery 設定屬性的新值?
jQuery attr() 方法用於獲取屬性值。它還可以用於設定新值。我們將從 tutorialspoint.com/css 將屬性 href 的新值設定為 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.tw/html5"); }); }); </script> </head> <body> <p><a href="https://tutorialspoint.tw/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>
廣告