1024_mob_add_href

1024 mobile version add href link, remove onclick.

目前為 2020-08-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name         1024_mob_add_href
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  1024 mobile version add href link, remove onclick.
// @author       You
// @match        *://*/thread0806.php*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $('.t_one').each(function(){
        var hf = $(this).attr('onclick');
        if(hf != undefined){
            hf = hf.substring(hf.indexOf('htm_mob'),hf.lastIndexOf('.html')+5);
            $(this).children().attr('href',hf);
            $(this).removeAttr('onclick');
        }
    })
})();