3个回答
展开全部
这是测试的代码,希望有用:
<script>
var x="345asdfwe23234.";
x=x.replace(/[0-9\.]+/g,"");
alert(x);
if(x.length>0)
alert("wrong");
</script>
<script>
var x="345asdfwe23234.";
x=x.replace(/[0-9\.]+/g,"");
alert(x);
if(x.length>0)
alert("wrong");
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
对
测试如下:
<html>
<head>
<script language = "javascript">
function test() {
var pattern = /^([0-9.]+)$/;
var str = prompt("Enter the test string","");
if (pattern.test(str)) {
alert(true);
} else {
alert(false);
}
}
</script>
</head>
<body>
<input type = "button" value = "test" onclick = "test()" />
</body>
</html>
测试如下:
<html>
<head>
<script language = "javascript">
function test() {
var pattern = /^([0-9.]+)$/;
var str = prompt("Enter the test string","");
if (pattern.test(str)) {
alert(true);
} else {
alert(false);
}
}
</script>
</head>
<body>
<input type = "button" value = "test" onclick = "test()" />
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询