服务器端处理以在浏览器上对View页面源的内容进行聚类(或阻止内容)

时间:2015-07-06 10:37:31

标签: javascript

我有一个简单的网站,其中包含一些基本脚本:

<html>
<head>
<title>Welcome to my website but a user can view page source --oops</title>
<script>
//some basic javascript codes i used to build the website
</script>
</head>
<body>
<p>More contents on the actual implementation of the website.<p>
</body>
</html>

有没有办法我可以使用服务器端处理技术来聚类视图页面源的内容,因为我尝试过使用javascript没有实质性的结果。请帮忙!

1 个答案:

答案 0 :(得分:0)

您无法隐藏用户的javascript,html或css。你可以在服务器上像php那样处理一些代码,但你需要返回html。使用户阅读代码变得复杂的唯一方法是尝试最小化javascript / css / html代码。 YUI压缩器可以帮助你:

http://refresh-sf.com

这使您的代码更难以阅读,但行为是相同的。

祝你好运。