通过 JS 修改具体标签的属性的属性值

博客地址:https://www.cnblogs.com/zylyehuo/

  window.addEventListener('DOMContentLoaded', function() {
      var anchorTags = document.querySelectorAll('a'); // 获取页面中所有的<a>标签
      anchorTags.forEach(function(anchor) {
      anchor.setAttribute('target', '_self'); // 将target属性设置为"_self"
      });
  });
posted @ 2023-10-01 00:14  zylyehuo  阅读(15)  评论(0编辑  收藏  举报