DOMおれおれAdvent Calendar 2015 – 07日目 jQueryだと属性の操作はほとんど attr() で済むんですが、DOMは色々setとgetと分かれてます。あと名前が長いです。 // el = <a href="#top">TOP</a> console.log(el.getAttribute('href')); // => "#top" el.setAttribute('href', '#top-of-the-world'); console.log(el.getAttribute('href')); // => "#top-of-the-world"