gpt4 book ai didi

Javascript 或 JQuery 密码提示

转载 作者:行者123 更新时间:2023-11-29 16:59:27 25 4
gpt4 key购买 nike

我在网上发现了类似的问题,但没有可行的解决方案。

如标题所示,我的问题是如何利用 jQuery 或 Javascript 创建密码提示,例如,在单击按钮时。

所以下面是,但不是显示文本,我希望文本字段充当密码字段。

var pass1 = 'hello123';
password=prompt('Please enter password to view page')
if (password==pass1)
alert('password correct! Press ok to continue.')

我想要类似于下图的东西!

enter image description here

最佳答案

您可以做的一件事(如提到的@David)是使用模型窗口或子窗口生成要填写的表单。

HTML

<!DOCTYPE Html />
<html>
<head>
<title></title>
</head>
<body>
<input type="button" id="prompt" value="Click for authentication prompt"/>
<script type="text/javascript" src="theJS.js"></script>
</body>
</html>

JavaScript

var theButton = document.getElementById("prompt");

theButton.onclick = function () {
var thePrompt = window.open("", "", "widht=500");
var theHTML = "";

theHTML += "<p>The server http://localhost:8888 requires a username and password. The server says: These are restricted files, please authenticate yourself.</p>";
theHTML += "<br/>";
theHTML += "Username: <input type='text' id='theUser' placeholder='Enter Username...'/>";
theHTML += "<br />";
theHTML += "Password: <input type='text' id='thePass' placeholder='Enter Password...'/>";
theHTML += "<br />";
theHTML += "<input type='button' value='OK' id='authOK'/>";
thePrompt.document.body.innerHTML = theHTML;

var theUser = thePrompt.document.getElementById("theUser").value;
var thePass = thePrompt.document.getElementById("thePass").value;
thePrompt.document.getElementById("authOK").onclick = function () {
doAuthentication(theUser, thePass);
}
}

function doAuthentication(user, pass) {
//do authentication
}

显然,如果您想要与您正在使用的窗口保持相同的外观和感觉,您将需要应用一些 CSS 和 JavaScript 使其更“漂亮”,以便它反射(reflect)您正在使用的内容去。

关于Javascript 或 JQuery 密码提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29403655/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com