给easyui的文本框添加onclick等事件

来源:互联网 发布:7t网络加速器 编辑:程序博客网 时间:2024/05/17 17:14
var oneText = $('#tt').datagrid('getEditor',{'index':lastIndex,'field':'listprice'}).target;
oneText.blur(function(){//关键在这里
     var oneTextVal = parseFloat(this.value);
     var twoTextVal = parseFloat($('#tt').datagrid('getEditor',{'index':lastIndex,'field':'unitcost'}).target.val());
     $('#tt').datagrid('getEditor',{'index':lastIndex,'field':'hiddenObj'}).target.val(oneTextVal+twoTextVal);
});
原创粉丝点击