码迷,mamicode.com
首页 > 编程语言 > 详细

javascript——创建对象3

时间:2015-02-09 15:32:50      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title>js01_hello</title>
	<meta name="author" content="Administrator" />
	<script type="text/javascript">
	/**
	 * 以下等于为String扩展了一个trim的方法来去除空格
	 */
	String.prototype.trim = function() {
		//js的正则表达式和java很类似,区别就是js是使用//
		return this.replace(/(^\s+)|(\s+$)/g,"");
	}
	var str = "   aaaa   ";
	alert("|"+str.trim()+"|");
	</script>
</head>
<body>
</body>
</html>

  

javascript——创建对象3

标签:

原文地址:http://www.cnblogs.com/aicpcode/p/4281554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!