export_output.js 289 Bytes 编辑Web IDE 1 2 3 4 5 6 7 8 9 /* vim: set expandtab sw=4 ts=4 sts=4: */ AJAX.registerOnload('export_output.js', function () { $(document).on('keydown', function (e) { if ((e.which || e.keyCode) === 116) { e.preventDefault(); $('#export_refresh_form').submit(); } }); });