码迷,mamicode.com
首页 > 其他好文 > 详细

enter回车提交表单

时间:2015-12-14 20:54:20      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

<style>
#XY{
	width:40px;
	height:100px;
	background:#aaa;
}
</style>

<input type="input" />

<script>
$(document).ready(function() {  
     $("input").keyup(function(e){
		    if(e.which=="13"){
			   alert("回车提交!")
		    }
		})
});


</script>

  

enter回车提交表单

标签:

原文地址:http://www.cnblogs.com/weixin186/p/5046196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!