我想在greasemonkey中使用javascript或jquery从第一个链接重定向到另一个链接
http://*.tumblr.com/post/*/*
http://$1.tumblr.com/image/$2
答案 0 :(得分:0)
使用此正则表达式
/^http:\/\/(.*).twitter.com\/post\/(.*)\/(.*)/g
喜欢这个
var regexp = new RegExp(/^http:\/\/(.*).twitter.com\/post\/(.*)\/(.*)/g);
var results = regexp.exec(window.location.href);
要创建阵列,您可以
if(results){
window.location="http://"+results[1]+".twitter.com/image/"+results[2]+"/"+results[3];
}
重定向