我需要使用javascript,
验证文本框条目的格式如下要验证的格式:45分钟。
验证它应该接受任何数字空格分钟。
答案 0 :(得分:0)
这段代码可以帮助你猜测。
ESC O P
此处<!DOCTYPE html>
<html>
<body>
<p>Search for 45 minutes in the text in the next paragraph:</p>
<p id="p01">45 minutes</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
text = document.getElementById("p01").innerHTML;
document.getElementById("demo").innerHTML = /[0-9]{2}\sminutes/.exec(text);
}
</script>
</body>
</html>
表示允许任意两位数的数字。 [0-9]{2}
表示空白字符,\s
是您要在其中找到的文字。
如果您想了解有关正则表达式的更多基本信息,可以在此处找到:Regex Expressions