Closed realskyzou closed 8 years ago
在某些不是基于textarea开发的文本编辑器中,按回车会自动提交。 修改了下 if (ctrl.needBindKeydown) { form.bind("keydown keypress", function (event) { if (event.which === 13) { var currentInput = document.activeElement; if (currentInput.type&¤tInput.type !== "textarea") {
if (ctrl.needBindKeydown) { form.bind("keydown keypress", function (event) { if (event.which === 13) { var currentInput = document.activeElement; if (currentInput.type&¤tInput.type !== "textarea") {
增加currentInput.type&&判断,就不会自动提交表单了。
好的
你能直接 提交 pull request 吗?
已pull
升级到 v2.4.12 即可
在某些不是基于textarea开发的文本编辑器中,按回车会自动提交。 修改了下
if (ctrl.needBindKeydown) { form.bind("keydown keypress", function (event) { if (event.which === 13) { var currentInput = document.activeElement; if (currentInput.type&¤tInput.type !== "textarea") {
增加currentInput.type&&判断,就不会自动提交表单了。