一些网站使用“创意”(javascript?)超链接,这会破坏浏览器的功能,例如按住 Ctrl 键并单击或单击鼠标中键以在新选项卡中打开它们的功能。
一个常见的例子,taleo HR 网站 http://www.rogers.com/web/Careers.portal?_nfpb=true&_pageLabel=C_CP&_page=9
无论我怎么尝试,我都只能通过正常点击来跟踪链接;我无法在新窗口中打开它们。有什么办法吗?
答案1
您的问题是针对 Taleo 的,所以我的回答也是如此 :)
我编写了一个 UserScript 来实现您的要求:它用普通链接替换所有 JavaScript 链接,因此您只需单击它们或在新选项卡中打开它们即可。
// ==UserScript==
// @name Taleo Fix
// @namespace https://github.com/raphaelh/taleo_fix
// @description Taleo Fix Links
// @include http://*.taleo.net/*
// @include https://*.taleo.net/*
// @version 1
// @grant none
// ==/UserScript==
function replaceLinks() {
var rows = document.getElementsByClassName("titlelink");
var url = window.location.href.substring(0, window.location.href.lastIndexOf("/") + 1) + "jobdetail.ftl";
for (var i = 0; i < rows.length; i++) {
rows[i].childNodes[0].href = url + "?job=" + rows[i].parentNode.parentNode.parentNode.parentNode.parentNode.id;
}
}
if (typeof unsafeWindow.ftlPager_processResponse === 'function') {
var _ftlPager_processResponse = unsafeWindow.ftlPager_processResponse;
unsafeWindow.ftlPager_processResponse = function(f, b) {
_ftlPager_processResponse(f, b);
replaceLinks();
};
}
if (typeof unsafeWindow.requisition_restoreDatesValues === 'function') {
var _requisition_restoreDatesValues = unsafeWindow.requisition_restoreDatesValues;
unsafeWindow.requisition_restoreDatesValues = function(d, b) {
_requisition_restoreDatesValues(d, b);
replaceLinks();
};
}
你可以在这里找到它:https://github.com/raphaelh/taleo_fix/blob/master/Taleo_Fix.user.js
答案2
对于您提到的例子,这个 Tampermonkey UserScript 将把搜索结果中的所有 JavaScript 链接设置为在新选项卡/窗口中打开(这取决于浏览器配置,对我来说是选项卡)。
// ==UserScript==
// @name open links in tabs
// @match http://rogers.taleo.net/careersection/technology/jobsearch.ftl*
// ==/UserScript==
document.getElementById('ftlform').target="_blank"
虽然您可以编写更通用的版本,但在不破坏其他可用性的情况下为所有 JavaScript 链接启用此功能将会很困难。
中间路径可以是设置一个事件处理程序Ctrl,只要按住该键,它就会暂时将所有表单的目标设置为“_blank”。
答案3
这是另一个用户脚本,它用元素onclick="document.location='some_url'"
中的属性包装任何元素<a href=some_url>
并删除onclick
。
我为特定网站编写了此代码,但它足够通用,可能对其他人有用。不要忘记更改@匹配下面的网址。
当链接通过 AJAX 调用加载时,此方法有效,因此需要 MutationObserver。
// ==UserScript==
// @name JavaScript link fixer
// @version 0.1
// @description Change JavaScript links to open in new tab/window
// @author EM0
// @match http://WHATEVER-WEBSITE-YOU-WANT/*
// @grant none
// ==/UserScript==
var modifyLink = function(linkNode) {
// Re-create the regex every time, otherwise its lastIndex needs to be reset
var linkRegex = /document\.location\s*=\s*\'([^']+)\'/g;
var onclickText = linkNode.getAttribute('onclick');
if (!onclickText)
return;
var match = linkRegex.exec(onclickText);
if (!match) {
console.log('Failed to find URL in onclick text ' + onclickText);
return;
}
var targetUrl = match[1];
console.log('Modifying link with target URL ' + targetUrl);
// Clear onclick, so it doesn't match the selector, before modifying the DOM
linkNode.removeAttribute('onclick');
// Wrap the original element in a new <a href='target_url' /> element
var newLink = document.createElement('a');
newLink.href = targetUrl;
var parent = linkNode.parentNode;
newLink.appendChild(linkNode);
parent.appendChild(newLink);
};
var modifyLinks = function() {
var onclickNodes = document.querySelectorAll('*[onclick]');
[].forEach.call(onclickNodes, modifyLink);
};
var observeDOM = (function(){
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
return function(obj, callback) {
if (MutationObserver) {
var obs = new MutationObserver(function(mutations, observer) {
if (mutations[0].addedNodes.length || mutations[0].removedNodes.length)
callback();
});
obs.observe(obj, { childList:true, subtree:true });
}
};
})();
(function() {
'use strict';
observeDOM(document.body, modifyLinks);
})();