Here「タイプを入力してください」という画像が表示されたら、入力してすべてを入力してください。機能が終了した後に画像をリセットする方法
終了後、もう一度画像を表示したいと思います。 私はこのコードを持っている:
function imageReset() {
$("#image").reset();
}
私はそれが戻ったばかりのnextLetter
機能の他にチェックでソースを設定する単語
function setLetter(letter) {
var img = document.getElementById("image");
if (letter && letter.length == 1) {
img.src = "http://thecodingninja.com/muslim/fingerspellingimg/"+letter+"abc.jpg";
}
else {
img.src = "";
}
}
function nextLetter(word) {
if (word.length > 0) {
var firstLetter = word.charAt(0);
setLetter(firstLetter);
setTimeout(nextLetter, 1000, word.substring(1));
}
else {
setLetter();
}
}
function spellWord() {
var word = document.getElementById("text").value;
nextLetter(word.toUpperCase());
}
これはPHPとは関係ありません..正しいタグ –
を参照してください画像のシーケンスを表示するために実行されているJavaScript関数を投稿できますか? –
コードを編集して追加しました。 – MuslimTwin