javascript之类的定义及构造函数
摘要:<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...
阅读全文
javascript之嵌套函数
摘要:在javascript中允许使用嵌套函数:<head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>嵌套函数</title><script type="text/javascript"> function fun1(){ funct...
阅读全文
alert() confirm() prompt()
摘要:1,alert(Text)起提示警告作用,Text为提示的内容 <body onload="alert('页面载入中!');">2,confirm(Text)起判断的作用,text为提示判断的内容.返回一个判断的bool值。 function Sure() { if(confirm("Are you sure!")==true) { document.getElementById(...
阅读全文