parseInt 方法返回与保存在 numString 中的数字值相等的整数。如果 numString 的前缀不能解释为整数,则返回 NaN(而不是数字)。parseInt("abc")     // 返回 NaN。
parseInt("12abc")   // 返回 12。