尝试为输入字段创建验证,这将在输入字段旁边放置一条消息。如您所见,用户不能输入任何低于 500 或高于 800 的值
<input type="text" name="amount" id="amount" maxlength="6" autocomplete="off"/>
<span class="paymentalert"></span>
请原谅我的javascript,因为我还在学习。
$(function(){
var min = 500.00;
var max = 800.00;
if ("#amount" < 500.00){
return ("Your payment must be between £500 and £800");
else if ("#amount" > 800.00)
return ("Your payment must be between £500 and £800");
else return false;
};
尝试使用 Stackoverflow 中的示例但无济于事。