1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
(function() {
function getParam(reqParam) { reqParam = reqParam.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]'); const paraReg = new RegExp('[\\?&]' + reqParam + '=([^&#]*)'); const results = paraReg.exec(window.location); return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' ')); }
function redirectZhihu() { window.location.href = getParam("target"); } function redirectJianShu() { window.location.href = getParam("url"); }
if ((window.location.hostname == "link.zhihu.com" || window.location.hostname == "link.csdn.net") && window.location.pathname == '/') { redirectZhihu(); } if (window.location.hostname == "www.jianshu.com" && window.location.pathname == '/go-wild') { redirectJianShu(); } })();
|