,可以通过以下步骤实现:
<!DOCTYPE html>
<html>
<head>
<title>输入值长度检查</title>
<style>
#input {
width: 300px;
height: 30px;
margin-bottom: 10px;
}
#length {
font-weight: bold;
}
</style>
</head>
<body>
<input type="text" id="input" oninput="checkLength()">
<div id="length"></div>
<script>
function checkLength() {
var input = document.getElementById("input").value;
var lengthDiv = document.getElementById("length");
lengthDiv.innerHTML = "输入值长度:" + input.length;
}
</script>
</body>
</html>
这样,当用户在输入框中输入内容时,div会实时显示输入值的长度。
领取专属 10元无门槛券
手把手带您无忧上云