获取单击的对象

var _this=this;
//在非编辑行和模版上上添加单击事件,单击时编辑此行
_this.private_table.find("tbody tr[ws_edit !='true'],thead tr[ws_template='true']").bind('click',function(){
                var l_this=this;//此处的this是指单击到的某行                 
                _this.EditRow($(l_this).attr('rowIndex'));                 
                var l_dbname=$(event.srcElement).attr('ws_dbname');
                _this.private_editTr.find("input[ws_dbname='"+l_dbname+"']").focus();                                                             

            }); 

你可能感兴趣的:(对象)