以下代码段会在将数字输入(或删除)到9 * 9
数独网格中时触发警报事件。
$('table tr td input').on({"input": function () {
var cell = $(this).val();
if (!$.isNumeric(cell)) {
alert("Please enter only numbers from 1 to 9");
}
}});
但是如何在删除文本时删除警告消息?只有在输入数字时才必须触发它。
答案 0 :(得分:0)
更改
if (!$.isNumeric(cell)) {
到
if (cell && !$.isNumeric(cell)) {
答案 1 :(得分:0)
我会做以下事情。
$('table tr td input').on({"input": function () {
var cell = $(this).val();
if (cell.length > 0 && !$.isNumeric(cell)) {
alert("Please enter only numbers from 1 to 9");
}
}});