/**
* Created by Administrator on 2016/8/25.
*/
function EasyJs(pageName,path){
this.pageName=pageName;
this.path=path;
}
EasyJs.prototype = {
constructor:EasyJs,
aaa:function(obj){
alert(obj.id);
},
bbb:function(){
alert('bb');
},
ccc:function(){
alert('cc');
}
};
var aa=new EasyJs('demo_page','/localhost/');
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script src="prototype.js"></script>
</head>
<body>
<input type="text" onblur="aa.aaa(this)" id="qwe">
<input type="text" onblur="aa.bbb()">
<input type="text" onblur="aa.ccc()">
</body>
</html>