我想在 div 中显示一条消息而不是警告它,然后将其隐藏在click/blur
由于键入错误而弹出警告。我需要在 div 中显示消息而不是警报。
就像是:
$('form.form-calculator input').on('change click', function() {
if ($(this).val() == 0) {
var div = $("#AlertMessage");
div = $("<div id='AlertMessage' onclick='$(this).hide();'></div>");
$("body").prepend(div);
this.value=0;
}
calc_total();
});
随着警报
$(function () {
$('.form input').on('change click focus', function () {
if ($(this).val() == 0) {
alert('HELLO');
this.value = 0;
}
calc_total();
});
});