是否可以制作它以便您必须编写密码才能看到警报。我不是JavaScript专家,所以我不知道如何制作它。但是在python中它看起来像这样:
password = "123"
input = input("What is the password?")
if password == input:
alert("The password was right!")
else:
alert("Wrong password!")
你能否"激活"这个脚本通过"锚点#34;标签和" href"?
很抱歉,如果对此有详细解释,如果您有任何疑问,请在下面发布。
答案 0 :(得分:0)
您可以使用prompt
来捕获用户输入。像这样:
function onClick() {
const password = "123"
const input = prompt("What is the password?")
if (input === password) {
alert("The password was right!");
} else {
alert("Wrong password!");
}
}
<a onclick="onClick();">TEST ANCHOR</a>