我在jsp页面中创建了一个表单并应用了HTML5的拼写检查属性来检查用户输入的错误单词。 现在,问题是我必须确保用户输入的数据不会被转移,除非所有拼写都是正确的。
为此,应该对拼写错误的单词进行某种验证。
请帮帮我,我的jsp页面代码如下:
<html>
<head>
</head>
<body>
<div id="topic">
<div class="inputholder">
<h1>Enter the text</h1>
<form action="preprocessing" method="post" name="initialpage" onsubmit="return validateSpellcheck()">
<textarea id="styleid" name="field3" placeholder="Here..." contenteditable="true" spellcheck="true"></textarea>
<input type="submit" value="Submit" name="hello" />
</form>
</div>
</div>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
</body>
</html>