ホームページ  >  記事  >  ウェブフロントエンド  >  JavaScriptでグラフィックの領域を見つける方法

JavaScriptでグラフィックの領域を見つける方法

王林
王林オリジナル
2021-10-26 16:21:042663ブラウズ

グラフィックの領域を見つける Javascript メソッド: [function Circle(r){ if(this instanceof Circle){this.r=r; this.area=function(){return Math.PI *これ]。

JavaScriptでグラフィックの領域を見つける方法

#この記事の動作環境: Windows10 システム、JavaScript 1.8.5、thinkpad t480 コンピューター。

グラフィック領域の解決策:

最初のタイプ: コンストラクター

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script>
        function Retangle(a,b){
            if(this instanceof Retangle){
                this.a=a;
                this.b=b;
                this.area=function(){
                    return this.a*this.b;
                    //console.log(Math.PI*this.r*this.r);
                }
                this.premeter=function(){
                    return (this.a+this.b)*2;
                    //console.log(Math.PI*this.r*2);
                }
            }else{
                return new Retangle(a,b);
            }
        }
        let c=new Retangle(10,10);
        //console.log(c instanceof Circle);//判断bool值
        console.log(c.area());
        console.log(c.premeter());
        Retangle(10,10);
    </script>
</head>
<body>
</body>
</html>

円の領域:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script>
        function Circle(r){
            if(this instanceof Circle){
                this.r=r;
                this.area=function(){
                    return Math.PI*this.r*this.r;
                }
                this.premeter=function(){
                    return Math.PI*this.r*2;
                }
            }else{
                return new Circle(r);
            }
        }
        let c=new Circle(10);
        //console.log(c instanceof Circle);
        console.log(c.area());
        console.log(c.premeter());
        Circle(10);
    </script>
</head>
<body>
 
</body>
</html>

出力には 2 つの形式があります。

Windows 共通関数

Circle(10);
console.log(window.r);
console.log(window.area());
console.log(window.premter());

コンストラクター

let c = new Circle(10);
// console.log(c);
console.log(c instanceof Circle);
 
console.log(c.r);
console.log(c.area());
console.log(c.premter());

2 番目の型:

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script>
        function Retangle(){
            var a = document.getElementById("a1").value;
            var b = document.getElementById("b1").value;
            alert("矩形面积:"+a*b);
        }
    </script>
</head>
<body>
<form>
    长:<br>
    <input type="text" id="a1"><br>
    宽:<br>
    <input type="text" id="b1"><br>
    <button onclick="Retangle()" name="矩形面积" value="">计算面积</button>
    <input type="reset" name="reset" value="重置">
</form>
</body>
</html>

推奨学習:JavaScript ビデオ チュートリアル

以上がJavaScriptでグラフィックの領域を見つける方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。