我有一个表格,我试图在提交时只允许某些值。
允许为 1-8、n 和空白。就这些。
我从 1-8 开始,但对于 n 和空白我不知道。
function check(form) {
if (form.scores.value > 8 || form.scores.value <= 0) {
self.alert(form.scores.value + " is an invalid value! Allowed values are 1 to 8, n and blank");
form.scores.focus();
}
}
HTML
<input type="text" name="scores" id="scores" maxlength="1" size="2" value="<%= number %>" />
HTML:
<input type="button" onClick="check(this.form)" value="Edit" />
请帮忙
谢谢