我正在尝试向我的网站添加一个链接或按钮,用户可以在其中看到当前页面的来源。
尝试以下操作时没有运气:
<a href="view-source:http://www.example.com" target="_blank">View Source</a>
还有什么想法吗?也许使用javascript我们可以从当前页面获取源代码?
谢谢
我正在尝试向我的网站添加一个链接或按钮,用户可以在其中看到当前页面的来源。
尝试以下操作时没有运气:
<a href="view-source:http://www.example.com" target="_blank">View Source</a>
还有什么想法吗?也许使用javascript我们可以从当前页面获取源代码?
谢谢
您可以添加一个简单的按钮,如下所示:
<button type ="button" onclick="viewSource()">View Source</button>
然后是以下javascript函数:
function viewSource(){;
var source = "<html>";
source += document.getElementsByTagName('html')[0].innerHTML;
source += "</html>";
source = source.replace(/</g, "<").replace(/>/g, ">");
source = "<pre>"+source+"</pre>";
sourceWindow = window.open('','Source of page','height=800,width=800,scrollbars=1,resizable=1');
sourceWindow.document.write(source);
sourceWindow.document.close();
if(window.focus) sourceWindow.focus();
}
这将打开它自己的窗口并显示当前页面的来源。
检查此链接
这里有一个创建查看源按钮的好例子
html:
<a href="#source-code">View Source</a>
<div id="#source-code"></div>
CSS:
#source-code { display: none; }
#source-code:target { display: block; }
Javascript:
var html = $("html").html();
$(function() {
$("<pre />", {
"html": '<!DOCTYPE html>\n<html>\n' +
$("html")
.html()
.replace(/[<>]/g, function(m) { return {'<':'<','>':'>'}[m]})
.replace(/((ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?)/gi,'<a href="$1">$1</a>') +
'\n</html>'
}).appendTo("#source-code");
});