This code is to replace enter with tab character: $("#wmd-input").bind("keypress", function(e) { if (e.keyCode == 13) { var input = $(this); var inputVal ...
確定! 回上一頁