Greasy Fork

Greasy Fork is available in English.

poe trade汉化版搜索时新窗口打开原版页面

poe trade汉化版搜索时新窗口打开原版页面同时清空关键字栏和词缀过滤栏

当前为 2019-04-18 提交的版本,查看 最新版本

// ==UserScript==
// @name         poe trade汉化版搜索时新窗口打开原版页面
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  poe trade汉化版搜索时新窗口打开原版页面同时清空关键字栏和词缀过滤栏
// @author       wishayne
// @match        http://poe.dr3gg.com/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('#search').attr('target', '_blank');

    // 搜索按钮 的点击事件
    //清空关键字栏和词缀过滤栏. 若不想清空, 请自行删掉或者用//注释掉此后四行内容  即 $(...});
    $("input.search.button").click(function(){
        $('#name').val("");           //清空关键字栏
        $('.explicit-mods').empty();  //清空词缀过滤栏
    });
})();