有没有人知道如何实现以下目标?
当用户在输入框中输入1时会弹出一个警告,但我希望用户能够确认新值并自动用最小值填充输入字段或取消,并且该字段保持空白。 / p>
到目前为止,我有以下代码:
function Form_Validator(theForm)
{
var err = false;
var field;
var msg = 'Please correct the following to continue...\n';
var alpha = /\w/;
var numeric = /[^0-9^\s]/;
var emailvalidator = /\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/;
var teststr = '';
if(theForm.prod_quantity.value == '1'){
msg += '\nThe minimum order amount is 2.';
if (!err){
field = theForm.prod_quantity;
err = true;
}
}
if (!err){
return true;
}
else{
alert(msg);
field.focus();
return false;
}
}
<b>Quantity:</b> <input type="text" class="prod_quantity" name="prod_quantity" />
<input type="submit" value="" class="add-basket-btn"/>
我已设法显示警告框但是我不知道如何使其自动填充,以便如果他们单击确定值变为2。我希望这是有道理的。
答案 0 :(得分:0)
在条件中使用简单的confirm()
对话框而不是alert()
,并在输入框中设置所需的值:
if (confirm (msg)) { // ask for confirmation
// set the new value
theForm.prod_quantity.value = 2;
} else {
// leave the box blank
theForm.prod_quantity.value = '';
}
答案 1 :(得分:0)
// ...
var orderAmount = confirm(msg);
if ( orderAmount ) theForm.prod_quantity.value = "2";