摘要:
1.弹出对话框.点击转向指定页面Code: Response.Write("<script>window.alert('该会员没有提交申请,请重新提交!')</script>");Response.Write("<script>window.location ='http://www.msproject.cn/index.asp'</script>"... 阅读全文
摘要:
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(... 阅读全文