半肾
精华
|
战斗力 鹅
|
回帖 0
注册时间 2008-8-25
|
本帖最后由 風美由飛 于 2015-3-29 23:35 编辑
我昨天看了5章犀牛书复习了下JS,把楼主的油猴稍微改了下:原先的点击空白处跳转改回点击链接跳转,增加了点击页数跳转。(有点问题,你们悠着点用……- if(location.href.startsWith('http://bbs.saraba1st.com/2b/forum-')){
- var wp =document.querySelector('#wp');
- wp.style.width='48%';
- wp.style.float='left';
- wp.style.minWidth='0px';
- var f=document.createElement("iframe");
- f.id='frame';
- //Modified by SuperUni
- f.name = "myframe";
- f.style.width='51.5%';
- f.style.height='95%';
- f.style.position='fixed';
- f.style.right='0';
- f.style.bottom='0';
- document.body.appendChild(f);
- /*
- Modified by SuperUni
- */
- var allLinks = document.getElementById("threadlisttableid").getElementsByTagName("a");
- for(var index = 0; index < allLinks.length; index++){
- var temp = allLinks[index];
- temp.target = "myframe";
- temp.onclick = null;
- }
- /*
- Modified by SuperUni
- */
- //function openpost(p){
- // var f=document.querySelector('#frame');
- // f.src=p.querySelector('tr>th>a').href;
- //}
- //var a=document.querySelectorAll('#threadlisttableid>tbody');
- //
- //for (var index = 0; index < a.length; ++index) {
- // a[index].onclick=function(){openpost(this);};
- //}
- }else if(self!=top && location.href.startsWith('http://bbs.saraba1st.com/2b/thread')){
- GM_addStyle('#toptb,#hd{display:none}');
- }
复制代码 |
|