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 的方式订阅博客之类的么?