js声明的函数有两个参数,输出的时候为什么只输出了一个求详细解答 代码如下 不相关的部分请略过。。
<script>
person=new Object();
person.f="mike";
person.l="lau";
person.age=21;
var name="mike";
var age =48;
function Myfunc(){
document.getElementById("name").innerHTML=name;
document.getElementById("age").innerHTML=age;
}
</script>
<script>
document.write(person.f + "<br>");
document.write(person.l + "<br>");
document.write(person.age + "<br>");
var txt="hello world";
var x=txt.toUpperCase();
document.write(x);
</script>
</head>
<body>
<div id="name">there will show the name</div>
<div id="age">there will show the age</div>
<input type="button" onclick="Myfunc()" value="Welcome" />
</body>
</html>
这是可以实现的代码。一般的话定义函数里边的属性不是特别强调是不加参数的。还有就是<input />
现在已经实现两个参数的调用~
给你推荐一个学习html的一个网站:www.w3school.com.cn