javascript:function getRssUrl() { var baseUrl = document.location.href.split("/")[2]; var urlType = document.location.href.split("/")[3]; if (baseUrl == 'www.v2ex.com' && urlType == 'go') { var theUrl = 'https://www.v2ex.com/feed/' + document.location.href.split("/")[4] + '.xml'; } else if (baseUrl == 'www.v2ex.com' && urlType == 't') { var theUrl = 'https://www.v2ex.com/feed/' + document.getElementsByClassName('header')[0].getElementsByTagName('a')[2].getAttribute('href').split("/")[2] + '.xml'; } else { alert('请在 V2EX 帖子或具体节点页面下使用。 —— zhangbohun'); return; } var theUrlDivNode = document.createElement("textarea"); theUrlDivNode.innerText = theUrl; theUrlDivNode.setAttribute("id", "this-page-url"); document.body.appendChild(theUrlDivNode); document.getElementById('this-page-url').select(); document.execCommand("Copy"); document.body.removeChild(document.getElementById('this-page-url')); window.open(theUrl);}getRssUrl();
功能如题。
话说还有人在用 RSS 的方式订阅博客之类的么?
1
aixiaoge 2016-10-24 08:09:49 +08:00
有啊,用的 Inoreader
|
2
dynos01 2016-10-24 13:15:07 +08:00 via iPhone
有啊,看 rss 比开一大堆 app 方便多了
|