标签:测试 body isnan on() 第一个 dem inpu src innerhtml
1.try..catch..
<body>
<script>
function myFunction()
{
try
{
var x=document.getElementById("demo").value;//取值
if(x=="") throw "值为空"; //返回错误提示
if(isNaN(x)) throw "不是数字";
if(x>10) throw "太大";
if(x<5) throw "太小";
}
catch(e) //定义错误提示为e
{
var y=document.getElementById("mess"); //读取显示错误提示的标签id
y.innerHTML="错误:" + e + "。"; //通过e显示错误提示
}
}
</script>
<h1>我的第一个 JavaScript 程序</h1>
<p>请输入 5 到 10 之间的数字:</p>
<input id="demo" type="text"> <!--输入值-->
<button type="button" onclick="myFunction()">测试输入值</button><!--点击事件-->
<p id="mess"></p> <!--显示错误提示-->
</body>
显示结果:
标签:测试 body isnan on() 第一个 dem inpu src innerhtml
原文地址:http://www.cnblogs.com/wskxy/p/6659146.html