English 中文(简体)
如何在新标签中,一个接一个地打开许多链接?
原标题:How to make greasemonkey open lots of links, in new tabs, one by one?

There are some links which looks like above

> <td><a href="http://Lucifase.com/pages/2000.php?refid=2000"
> target="_blank">2000</a><br></td> <td><a
> href="http://Lucifase.com/pages/3000.php?refid=3000"
> target="_blank">3000</a><br></td> <td><a
> href="http://Lucifase.com/pages/4000.php?refid=4000"
> target="_blank">4000</a><br></td> <td><a
> href="http://Lucifase.com/pages/5000.php?refid=5000"
> target="_blank">5000</a><br></td> <td><a
> href="http://Lucifase.com/pages/6000.php?refid=6000"
> target="_blank">6000</a><br></td>

And I stop in first step.I can t open each of them by script trigger. Here is which I have so far:

 setTimeout(function() {
    var evt = document.createEvent("MouseEvents");
    evt.initMouseEvent("click", true, true, window,
                       0, 0, 0, 0, 0,
                       false, false, false, false,
                       0, null);
 var links = document.getElementsByTagName( a );
             if(links.href.search( refid ) >= 0)

    links.dispatchEvent(evt);
 }, 1000);

但它不起作用, 也不知如何在新的标签中 逐个打开。

最佳回答

你说一个接一个是什么意思?

使用链接时, 必须使用 < code>href 而不是试图发送点击事件。 以下代码应该只打开您想要的标签 :

var linksToOpen = document.querySelectorAll ("td > a[href*= refid ]");
for (var J = 0, numLinks = linksToOpen.length;  J < numLinks;  ++J) {
    window.open (linksToOpen[J].href,  _blank );
}


Update for OP clarification:
To open the links with a delay between each one is slightly more complicated. Code like this will do it:

var linksToOpen = document.querySelectorAll ("td > a[href*= refid ]");

//--- linksToOpen is a NodeList, we want an array of links...
var linksArray  = [];
for (var J = 0, numLinks = linksToOpen.length;  J < numLinks;  ++J) {
    linksArray.push (linksToOpen[J].href);
}

openLinksOnDelay (linksArray);

function openLinksOnDelay (linkArray) {
    //--- Pop the first link off the array...
    var linkToOpen  = linkArray.shift ();
    if (linkToOpen)
        window.open (linkToOpen,  _blank );

    //--- Open the next of the remaining links after a delay.
    if (linkArray.length) {
        setTimeout ( function() {
                openLinksOnDelay (linkArray);
            },
            1000    //--- 1 second.  Use 60000 for 1 minute.
        );
    }
}
问题回答

是否需要鼠标单击, 或者可以打开此链接的链接 :

for(i=0;i<document.links.length;i++) {
  if(document.links[i].target != "_blank"){
     window.open(
       document.links[i].href,
        _blank 
     );
  }
}




相关问题
Call href from JavaScript

This is the same question as THIS ONE, I can t answer that anymore, so I m re-posting it with my account. Sorry for the mess. I need a Greasemonkey script that on a page load activates a href link ...

form.submit() causes uncaught exception in greasemonkey

I m using a greasemonkey script to load a page with ajax and automatically fill in the form fields inside the page and submit the form. The problem is that when the form.submit() statement is executed ...

Can I build an addin for Gmail?

Is there a way I can create an addin for my Gmail account? Is GreaseMonkey the only real way? I use Gmail for customer service, and I d like to create a tool that looks up the customer and preps a ...

Is nested XMLHttpRequests with multiple closures a good idea?

I have a Greasemonkey script which operates on a search results page at a video site. The function of the script is to take a javascript link that opens a new window with a flash player, jump through ...

jQuery data() function in GreaseMonkey

I m trying to use jQuery s data() function to store and retrieve data on an element. I want to retrieve the data stored in a textarea whenever the user enters the space bar1. However, everytime I do ...

GreaseMonkey onclick binding

When I write a GreaseMonkey script, if I create a div and set onclick to alert it works: var btn = document.createElement( div ); btn.setAttribute( onclick ,"alert( clicked! );"); However, if I ask ...

热门标签