html 获取文本框的值
程序员文章站
2022-06-20 08:58:02
...
jQuery(document).ready(function(){
//按回车键获取到文本框的值
$('#headerGet').on('keydown',function(e){
if(e.keyCode == 13){
console.log(1);
}
})
})
下一篇: 常用函数