修改HTT文件即可
我写两段代码请看一下,我是用来加密windos的,但我试了一下。不知为什么老是第2段
先被解释才解释第1段
帮我看一下,不知如何解决 thank
<script language="vbscript">
function askpass()
document.all.filelist.style.visibility="hidden"
passwrd="addoil"
getii=window.prompt("请输入密码:")
if getii=passwrd then
window.alert("答对了,恭喜你!!")
document.all.filelist.style.visibility="visible"
else
window.alert("错了,密码不对。给我滚")
end if
end function
</script>
<script>
password=window.prompt("请输入打开此文件夹的密码","请在此处输入")
if (password =="addoil")
alert("恭喜你,密码输入正确。是不是胡乱猜中的! ^_^")
else
document.location="zp.htm"
</script>