|
楼主 |
发表于 2008-12-22 13:50:33
|
显示全部楼层
的确。LS几位兄台证明不是浏览器问题之后,用firebug查了查,发现是每个帖子主体部分的div style里“overflow-x: hidden;"造成的。写了个greasemonkey脚本头疼医头了下,期待管理层能看到并予以解决吧。- // ==UserScript==
- // @name overflow remover
- // @namespace ex@palx.org
- // @include http://www.linuxsir.cn/bbs/*
- // ==/UserScript==
- //common functions
- function xpath(query) {
- return document.evaluate(query, document, null,
- XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
- }
- var divs=xpath('//div');
- for(var i=0;i<divs.snapshotLength;i++)
- if(divs.snapshotItem(i).id.match(/post_message/))
- divs.snapshotItem(i).style.overflowX=null;
复制代码 |
|