如何透過 jQuery 設定新的 id 屬性?
為實現此目的,從 attr() 中提取 id 並使用 replace() 替換 id 屬性。
示例
以下是程式碼 -
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <body> <div id="first-name"> </body> <script> $('[id*="-"]').each(function () { console.log('Previous Id attribute: ' + $(this).attr('id')); $(this).attr('id', $(this).attr('id').replace('-', '----')); console.log('Now Id Attribute: ' + $(this).attr('id')); }); </script> </html>
要執行上面的程式,請儲存檔名“anyName.html(index.html)”。右鍵單擊該檔案,然後在 VS Code 編輯器中選擇“Use Live Server 開啟”選項。
輸出
這將產生以下輸出 -
以下是在控制檯上的值 -
廣告