从选定的链接中制作随机书签输出
我有这个小书签:
javascript:void(window.open(document.links[Math.floor(Math.random()*document.links.length)].href,'_blank'))
它从充满链接的文档中输出随机链接。
我想让它仅从页面上许多链接中的某些特定链接随机输出。 我应该怎么办?
I have this bookmarklet:
javascript:void(window.open(document.links[Math.floor(Math.random()*document.links.length)].href,'_blank'))
It outputs random link from a document full of links.
I want to make it randomisingly output from only some particular links out of many links on a page.
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Firefox 中,要获取所选文本中的所有链接:
以下是针对 IE 的提示:http://pclancey.com/教程/selectsrc/
In Firefox, to get all links within selected text:
Here is a tip for IE: http://pclancey.com/tutorial/selectsrc/
您可以选择您想要允许的链接。
该代码将检查页面上选择的文本并将其保存在变量 allowedLinksText 中。然后代码将检查每个链接的innerHTML 是否包含在allowedLinksText 中。
如果每个链接文本都是唯一的,这将起作用。如果没有,它可能会打开一些不应该打开的链接。可能有一种方法可以获取所选文本的 HTML 代码,但我不知道。
You can select the links that you want to be allowed.
The code will check what text is selected on the page and save it in a variable allowedLinksText. Then the code will check if the innerHTML of each link to see if that innerHTML is included within allowedLinksText.
This will work if each link text is unique. If not, it might let some links be opened that should not be opened. There might be a way to get the HTML code of selected text, but I don't know it.