阅读:2769回复:4
怎样一次开启指定范围内连结??
我知道tabmax plus可以开启选取范围
但是好像不能只选取一个方形高亮了的连结范围(想在论坛里用) |
|
1楼#
发布于:2007-04-15 15:11
这个小书签倒是可以用
就是不是很好选中自己想要的(或者我使用方法错误?) Opens each link within the selection in a new window. javascript:(function(){var n_to_open,dl,dll,i; function linkIsSafe(u) { if (u.substr(0,7)=='mailto:') return false; if (u.substr(0,11)=='javascript:') return false; return true; } n_to_open = 0; dl = document.links; dll = dl.length; if (window.getSelection && window.getSelection().containsNode) { /* mozilla */ for(i=0; i<dll; ++i) { if (window.getSelection().containsNode(dl[i], true) && linkIsSafe(dl[i].href)) ++n_to_open; } if (n_to_open && confirm('Open ' + n_to_open + ' selected links in new windows?')) { for(i=0; i<dll; ++i) if (window.getSelection().containsNode(dl[i], true) && linkIsSafe(dl[i].href)) window.open(dl[i].href); } } /* /mozilla */ if (!n_to_open) { /*ie, or mozilla with no links selected: this section matches open_all_links, except for the alert text */ for(i = 0; i < dll; ++i) { if (linkIsSafe(dl[i].href)) ++n_to_open; } if (!n_to_open) alert ('no links'); else { if (confirm('No links selected. Open ' + n_to_open + ' links in new windows?')) for (i = 0; i < dll; ++i) if (linkIsSafe(dl[i].href)) window.open(dl[i].href); } } })(); |
|
2楼#
发布于:2007-04-15 15:11
Open links in tabs
不用按住CTRL,以right-up-left结尾的手势就可以,详情看选项 |
|
3楼#
发布于:2007-04-15 15:11
|
|
4楼#
发布于:2007-04-15 15:11
all in one gesture里面有一个手势
|
|