我想用回车键提交一些东西。如何防止换行。我不想产生像'\r'或'\n'这样的东西。
我使用的代码如下:
if(e.keyCode == 13){
if(textContent != ""){submit();}
//e.preventDefault();
//e.stopPropation();
e.returnValue = false;
return false;
}
我不想做一个新的行。
我想用回车键提交一些东西。如何防止换行。我不想产生像'\r'或'\n'这样的东西。
我使用的代码如下:
if(e.keyCode == 13){
if(textContent != ""){submit();}
//e.preventDefault();
//e.stopPropation();
e.returnValue = false;
return false;
}
我不想做一个新的行。