官方解释: Used to obtain the "System.Type" object for a type. A 'typeof' expression takes the following for: System.Type type = typeof(x); 可以理解为: 可用 'typeof' 来获取对象 'x' 的类型, 得到的 Type 类型对象 t 有一系列方法可以调用, x 必须是类名 . Object.GetType: Get the Type of the c…
一.String.charAt(index) 作用:获取字符串指定索引位置的字符 注意:index的值是0~(字符串长度-1)之间的值 <script type="text/javascript"> var str ="my name is javascript"; var c2 = str.charAt(2); var c3 = str.charAt(3); var c6 = str.charAt(6); var c11 = str.charAt(11…