把一下这段加到文章中去,建议在 more 之后:

1
2
3
4
5
6
7
8
9
10
11
<script>
if("987654312"==prompt("请输入文档密码"))
{
alert("密码正确");
}
else
{
alert("密码错误返回主页");
location="/";
}
</script>