摘要: 1.弹出对话框.点击转向指定页面Code: Response.Write("<script>window.alert('该会员没有提交申请,请重新提交!')</script>");Response.Write("<script>window.location ='http://www.msproject.cn/index.asp'</script>"... 阅读全文
posted @ 2009-08-07 16:51 大牛博客 阅读(760) 评论(1) 推荐(0) 编辑
摘要: JS 中面向对象的5钟写法Java代码 //第1种写法 function Circle(r) { this.r = r; } Circle.PI = 3.14159; Circle.prototype.area = function() { return Circle.PI * this.r * this.r; } var c = new Circle(1.0); alert(c.area(... 阅读全文
posted @ 2009-08-07 16:34 大牛博客 阅读(533) 评论(0) 推荐(0) 编辑