<script type="text/javascript">
//扩展方法 '原型'->'prototype'
//通过类对像的prototype设置扩展方法
String.prototype.isEmail = function () {
return this.indexOf('@') != -1 ? true : false;
};

</script>

05-06 03:55