3

我正在修改两个下拉列表的外观。这里没有问题。一切都很好。唯一的问题是该addEventListener方法仅适用于页面刷新。

如何在不点击刷新按钮的情况下使此代码在页面加载时工作?

window.addEventListener('load', function () 
{
    var CityCount = this.character.citynum ;
    var PosX = parseInt(CityCount) * (-15);
    var MyHeight = parseInt(CityCount) * 15 - 15;
    var MyStyle='div#citylist {width: 150px !important; margin-top: ' + PosX + 'px !important; position: absolute !important; height: ' + MyHeight + 'px !important; overflow: auto !important; padding-left: 1px !important}';
    addGlobalStyle(MyStyle);
    addGlobalStyle('div#my_city_list {width: 150px !important; margin-top: 50px !important;}');
}, false)
4

1 回答 1

1

您没有列出目标页面,但它可能使用 AJAX 设置和/或更改该全局变量。

此外,如果脚本失去其@grant none状态,或者如果您尝试在除 Firefox 之外的任何浏览器上使用它,问题代码将会中断。(除非脚本使用注入——我们无法从问题中看出这一点。)

要解决 AJAX 问题,请轮询setInterval().
要使代码更健壮,请使用unsafeWindowScript Injection。有关详细信息,请参阅“从 Greasemonkey... 访问变量”

把它们放在一起,这应该工作。 addEventListener()不需要:

var globScope       = unsafeWindow || window;
var cityCountTimer  = setInterval (styleTheCityList, 333);

function styleTheCityList () {
    this.lastCityCount  = this.lastCityCount || 0; // Static var for this func

    if (
            typeof globScope.character          != "undefined"
        &&  typeof globScope.character.citynum  != "undefined"
    ) {
        var CityCount  = parseInt (globScope.character.citynum, 10);
        if (CityCount !=  this.lastCityCount) {
            var PosX        = CityCount * (-15);
            var MyHeight    = CityCount * 15 - 15;
            var MyStyle     = 'div#citylist {width: 150px !important; margin-top: '
                            + PosX
                            + 'px !important; position: absolute !important; height: '
                            + MyHeight
                            + 'px !important; overflow: auto !important; padding-left: 1px !important}'
                            ;
            addGlobalStyle  (MyStyle);
            addGlobalStyle  ('div#my_city_list {width: 150px !important; margin-top: 50px !important;}');

            this.lastCityCount = CityCount;
        }
    }
}
于 2012-12-08T01:38:44.670 回答