首页 > 其他 > 详细

勾股定理

时间:2019-01-25 14:06:40      阅读:167      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <input type="text" value="" id="num1"/>
        <span>+</span>
        <input type="text" value="" id="num2"/>
        <span>=</span>
        <input type="text" value="" id="num3"/>
    </body>
</html>
<script>
    var oNum1 = document.getElementById( "num1" );
    var oNum2 = document.getElementById( "num2" );
    var oNum3 = document.getElementById( "num3" );
    //判断num1和num2是否为空
    function num(){
if( oNum1.value == "" || oNum2.value == ""){
   oNum3.value = "输入的数值不能为空"
}else{
oNum3.value = Math.sqrt(Math.pow((oNum1.value),2)+Math.pow(Number(oNum2.value),2));
}
    }
    oNum1.onfocus = function(){
        num();
            oNum2.onfocus = function(){
                num();
            }
    }
oNum2.onkeyup = function(){
      num();
            oNum1.onkeyup = function(){
                num();
            }
}

</script>

勾股定理

原文:https://www.cnblogs.com/tis100204/p/10319237.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!