<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
    <script type="text/jscript">
        function dog(x,y,z)
        {
            this.name1=x;
            this.height=y;
            this.weight=z;
        }
        var doga=new dog("duoduo",12,14);
        var dogb=new dog();
        dogb.name1="huhua";
        dogb.height=16;
        dogb.weight=41;
       
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <script type="text/javascript">
        document.write("doga的名字为:"+doga.name1+"<br>");
        document.write("doga的身高为:"+doga.height+"<br>");

        document.write("doga的体重为:"+doga.weight+"<br>");
        document.write("dogb的名字为:"+dogb.name1+"<br>");
        document.write("dogb的身高为:"+dogb.height+"<br>");

        document.write("dogb的体重为:"+dogb.weight+"<br>");

    </script>
    </div>
    </form>
</body>
</html>