如果将字段A中的金额编辑为字段B中找到的较小金额,则查找执行javascript通知弹出窗口的最佳方法?
我们没有使用任何js框架,但不排除该选项。
感谢。
答案 0 :(得分:1)
您可以尝试使用alert
功能。
答案 1 :(得分:1)
您可以使用alert
功能
if(valueOfFieldA < valueOfFieldB)
{
alert('please enter amount greater than Field B');
}
答案 2 :(得分:1)
我会推荐jQuery然后你可以这样做:
<input id='fld1' type=text value=5>
<div id="label1" style="display:none;"> </div>
<input id='fld2' type=text value=5>
并在您的脚本中
$(document).ready(function() {
$('#fld1').change(function(){
if($(this).val()>$('#fld2').val()){
//display it on the form
$('#label1').append('Fld 1 cannot be bigger than fld2!').show();
//or alert it to the user using alert();
alert('Fld 1 cannot be bigger than fld2!');
}
})
});
答案 3 :(得分:1)
我猜this就是你要找的。 p>
为方便起见,此处重写了代码
<强> HTML 强>
<label>A</label><input type="text" id="input1" onblur="checkBValue()"/><br/>
<label>B</label><input type="text" id="input2"/>
<强> JS 强>
function checkBValue(){
var b=parseInt(document.getElementById("input2").value);
var a=parseInt(document.getElementById("input1").value);
if (a<b && !isNaN(a) && !isNaN(b)) alert("A="+a+ " is less than B="+b);
return;
}
答案 4 :(得分:0)
简单地说,您可以创建一个js函数并使用A输入的onchange
事件调用它,
所以你可以指定通知用户的特殊方式;)
答案 5 :(得分:0)
无耻的插件,但这是我写的一个非常容易处理通知的库:http://shaundon.github.io/simple-notifications/