欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[easyUI]textbox键盘事件

程序员文章站 2022-07-15 16:03:48
...
这种方法不行:

$("#tt").textbox('textbox').click(function(){
           console.info(123);  
});

直接报错
Uncaught TypeError: Cannot read property 'textbox' of undefined 

 参考:https://www.jeasyui.com/forum/index.php?topic=5569.0

 

$(document).ready(function(){
	var t = $('#write_input');
	t.textbox('textbox').bind('keydown', function(e){
	   if (e.keyCode == 13){   // when press ENTER key, accept the inputed value.
	      t.textbox('setValue', $(this).val());
	   }
	});	
})

 注意要写在$(document).ready() block

另外passwordbox也同样使用textbox方法

相关标签: passwordbox keydown