补全a标签href属性

2022/10/24 上午10:59:59

当前为 2022-10-24 提交的版本,查看 最新版本

// ==UserScript==
// @name        补全a标签href属性
// @namespace   Violentmonkey Scripts
// @match       http://*
// @match       https://*
// @grant       none
// @version     1.1
// @author      meazin
// @license     MIT
// @description 2022/10/24 上午10:59:59
// ==/UserScript==


var aElements=document.getElementsByTagName('a')
for (const iterator of aElements) {
    if(!iterator['href']){
        iterator['href']='javascript:;';
    }
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址