如何使用jQuery在textarea中检测Ctrl+Enter?

<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
     $('#myinput').keydown(function(e) {
       
 var newkey = 'Key code = ' + e.which + ' ' + (e.ctrlKey ? 'Ctrl' : '') +
 ' ' + (e.shiftKey ? 'Shift' : '') + ' ' + (e.altKey ? 'Alt' : '');

        $('#mykey').text(newkey);
        return false;
        });
});