How to prevent cursor jump to next line in fixed column textarea
问题 I have a textarea with the following HTML... <textarea id="inputFreeContentArea" cols="16" rows="6" maxlength="96" wrap="hard"></textarea> When the user enters text, I want the cursor to stop moving when 16 characters are entered in a line, it should not automatically move to next line, only if the user hits the enter key. Furthermore, it should not be possible to exceed 6 rows. How can this be done? 回答1: There's not a simple way to achieve what you want, that would require a lot of code and