該切換控件是由javascript(jQuery)添加的,因此您必須使用支持AJAX的技術來訪問它。
見Choosing and activating the right controls on an AJAX-driven site。
您指出的鏈接有一個CSS類(i_expanded
),它爲waitForKeyElements()
提供了一個很好的選擇器。 因此,對於該網站所產生的完整的腳本很簡單:
// ==UserScript==
// @name aniDB, auto-close the sidebar menu
// @match *://anidb.net/perl-bin/animedb*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
introduced in GM 1.0. It restores the sandbox.
*/
waitForKeyElements (
".filter_menu.expanded .i_expanded", clickNode, true
);
function clickNode (jNode) {
var clickEvent = document.createEvent ('MouseEvents');
clickEvent.initEvent ('click', true, true);
jNode[0].dispatchEvent (clickEvent);
}
$( '一[標題= 「菜單的切換顯示」]')點擊()。 –