阻止回車提交表單

			//阻止回車提交表單
			$('form').keypress(function(e){
				  if(e.which === 13){
				    return false;
				    }
			})
相關文章
相關標籤/搜索