1
金額/番号の確認方法を追加する方法を知る必要があります。助けてください。金額/番号の確認の追加方法を知る必要があります
function validateShowform(amount) {
if (x == "") {
$("#amountError").css("display", "block");
} else {
$("#amountError").css("display", "none");
google.script.run.validateShow(amount);
}
修正方法を教えてください。
function CheckDecimal(amount)
{
var decimal= /^[-+]?[0-9]+\.[0-9]+$/;
if(amount.value.match(decimal))
{
alert('Correct, try another...')
return true;
}
else
{
alert('Wrong...!')
return false;
}
}