标签:style blog color io ar div cti log sp
function Person() { this.init() } Person.prototype = { constructor: Person, init: function() { document.documentElement.addEventListener(‘click‘, this, false) }, handleEvent: function(event) { this.say() }, say: function() { alert(‘hello world!‘) } } var person = new Person()
标签:style blog color io ar div cti log sp
原文地址:http://www.cnblogs.com/jzm17173/p/3951252.html