码迷,mamicode.com
首页 > 其他好文 > 详细

级联函数

时间:2016-06-03 21:21:27      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>

	<head>
		<meta charset="UTF-8">
		<title></title>
		<script>
			/*级联函数重点在于 把当前原型对象指针返回, 即可调用其他方法*/
			function person() {
				this._lian = "";
				this._zui = "";
				this._tui = "";
			}
			person.prototype = {
				setLian: function() {
					this._lian = "大脸";
					return this;
				},
				setZui: function() {
					this._zui = "大嘴";
					return this;
				},
				setTui: function() {
					this._tui = "大腿";
					return this;
				}
			}
			var p = new person();
			p.setLian().setZui().setTui();
			console.log(p);
		</script>
	</head>

	<body>
	</body>

</html>

  

级联函数

标签:

原文地址:http://www.cnblogs.com/yqlog/p/5557425.html

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