JavaScript 的 prompt
函数本身没有直接的输入限制功能。prompt
函数用于显示一个对话框,提示用户输入文本,并返回用户输入的值。它通常用于简单的输入场景,不适合复杂的数据验证或限制。
如果你需要对用户输入进行限制,你可以通过以下方法实现:
let input = prompt("请输入一个数字:");
let regex = /^\d+$/;
if (regex.test(input)) {
console.log("输入有效:", input);
} else {
alert("输入无效,请输入一个数字!");
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>自定义对话框</title>
<style>
/* 自定义对话框样式 */
.dialog {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 20px;
border: 1px solid black;
z-index: 1000;
}
</style>
</head>
<body>
<button onclick="showDialog()">显示对话框</button>
<div id="dialog" class="dialog">
<label for="input">请输入一个数字(1-100):</label>
<input type="text" id="input" name="input">
<button onclick="validateInput()">验证</button>
</div>
<script>
function showDialog() {
document.getElementById("dialog").style.display = "block";
}
function validateInput() {
let input = document.getElementById("input").value;
let regex = /^\d+$/;
if (regex.test(input) && parseInt(input) >= 1 && parseInt(input) <= 100) {
alert("输入有效:" + input);
} else {
alert("输入无效,请输入一个1到100之间的数字!");
}
document.getElementById("dialog").style.display = "none";
}
</script>
</body>
</html>
在这个示例中,我们创建了一个自定义对话框,并在其中添加了输入限制的逻辑。用户只能输入1到100之间的数字,否则会收到警告。