jQuery 플러그인 개발 방식을 이용하여 개발되었습니다. 구체적인 코드는 다음과 같습니다.
jQuery.fn.extend({ /** * ctrl+enter提交表单 * @param {Function} fn 操作后执行的函数 * @param {Object} thisObj 指针作用域 */ ctrlSubmit:function(fn,thisObj){ var obj = thisObj || this; var stat = false; return this.each(function(){ $(this).keyup(function(event){ //只按下ctrl情况,等待enter键的按下 if(event.keyCode == 17){ stat = true; //取消等待 setTimeout(function(){ stat = false; },300); } if(event.keyCode == 13 && (stat || event.ctrlKey)){ fn.call(obj,event); } }); }); } });
사용방법:
$("#textarea").ctrlSubmit(function(event){ //提交代码写在这里 });
정말 간단하고 실용적이지 않나요?