摘要:
目录:Ø 类和结构的示例比较Ø 类和结构的差别Ø 如何选择使用类还是使用结构一 类和结构的示例比较结构示例: public struct Person { string Name; public int height; int weight; public bool overWeight() { //implement something return false; } }类示例: public class TestTime{ int hours; int minutes; int seconds; public void pa 阅读全文
摘要:
JS跳转页面参考代码第一种:<script language="javascript" type="text/javascript">window.location.href="login.jsp?backurl="+window.location.href;</script>第二种:<script language="javascript">alert("返回");window.history.back(-1);</script>第三种:< 阅读全文