<!DOCTYPE html>src="//libs.baidu.com/jquery/1.10.2/jquery.min.js"$(document).ready(function(){test=function(){this.txt="This is an object property";$("div").click($.proxy(this.myClick,this));};test.prototype.myClick = function(event){alert(this.txt);alert(event.currentTarget.nodeName);};var x = new test();});这是一个 div 元素。