私の計算機を実行中...入力文字列が "0"であるかどうか、エラーを警告するかどうかを確認したいですか?しかし、どのように "/"をチェックしないのですか?ここに私の関数です:ゼロチェックによる除算
<input type="text" name="answer" id="t" onkeyup="isAllowedSymbol(this);checkLength(this);" placeholder="Enter data" >
<input type="button" value=" ÷ " onclick="calculator.answer.value += '/';div(this);checkLength(this);" />
function div(input)
{
var input = document.getElementById("t");
var lastElement = (input.value.length-1);
//alert(input.value.charAt(lastElement));
if (input.value.charAt(lastElement) == 'null')
{
alert("/to Zero");
}
}
ここで/ tは要素 't 'です – Wowsk
コードを投稿してください。これは答えを提供するには不十分です。 –